:root {
  --primary: #f97316;
  --primary-dark: #ea580c;
  --primary-soft: #fff7ed;

  --secondary: #0f766e;
  --secondary-soft: #ecfdf5;

  --dark: #111827;
  --text: #374151;
  --muted: #6b7280;

  --border: #e5e7eb;
  --background: #ffffff;
  --background-soft: #f9fafb;

  --white: #ffffff;
  --footer: #030712;

  --shadow-sm: 0 12px 30px rgba(17, 24, 39, 0.08);
  --shadow-md: 0 24px 70px rgba(17, 24, 39, 0.10);
  --shadow-orange: 0 12px 30px rgba(249, 115, 22, 0.24);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  color: var(--dark);
  background: var(--background);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1180px, 92%);
  margin: 0 auto;
}

/* Header */

header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.nav {
  height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo img {
    width: 110%;
    height: auto;
}

.nav-links {
  display: flex;
  gap: 32px;
  align-items: center;
  font-size: 15px;
  font-weight: 600;
}

.nav-links a {
  color: var(--text);
}

.nav-links a:hover {
  color: var(--primary);
}

/* Buttons */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 24px;
  border-radius: 12px;
  font-weight: 700;
  border: 1px solid var(--primary);
  transition: 0.2s ease;
}

.btn-primary {
  background: var(--primary);
  color: var(--white) !important;
  box-shadow: var(--shadow-orange);
}

.btn-primary:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  transform: translateY(-1px);
}

.btn-secondary {
  color: var(--primary);
  background: var(--white);
}

.btn-secondary:hover {
  background: var(--primary-soft);
  transform: translateY(-1px);
}

/* Hero */

.hero {
  padding: 82px 0 64px;
  background:
    radial-gradient(circle at 80% 20%, rgba(249, 115, 22, 0.16), transparent 32%),
    radial-gradient(circle at 10% 80%, rgba(15, 118, 110, 0.10), transparent 28%),
    linear-gradient(180deg, var(--primary-soft) 0%, var(--white) 100%);
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 60px;
  align-items: center;
}

.eyebrow {
  color: var(--primary);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 18px;
}

h1 {
  font-size: clamp(44px, 6vw, 78px);
  line-height: 0.98;
  letter-spacing: -4px;
  margin-bottom: 26px;
}

.hero p {
  max-width: 570px;
  font-size: 19px;
  color: var(--muted);
  margin-bottom: 32px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-card {
  position: relative;
  min-height: 460px;
  border-radius: 34px;
  background:
    linear-gradient(rgba(17,24,39,.05), rgba(17,24,39,.42)),
    url("../images/world-map.webp");

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  box-shadow: var(--shadow-md);
  overflow: hidden;
}

.mission-box {
  position: absolute;
  right: 28px;
  bottom: 28px;
  width: 280px;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.86);
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.14);
}

.mission-box strong {
  display: block;
  margin-bottom: 8px;
  font-size: 18px;
}

.mission-box p {
  font-size: 14px;
  margin: 0;
  color: var(--muted);
}

#about {
  background: #fff;
  padding-top: 110px;
  padding-bottom: 80px;
}

/* ===========================
   Stats
=========================== */

.stats {
    margin-top: -40px;
    position: relative;
    z-index: 5;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);

    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 24px;
    overflow: hidden;

    box-shadow: 0 20px 50px rgba(17,24,39,.08);
}

.stat {
    padding: 34px 28px;
    text-align: center;

    border-right: 1px solid var(--border);

    transition: all .25s ease;
}

.stat:last-child {
    border-right: none;
}

.stat:hover {
    background: var(--primary-soft);
}

.stat strong {
    display: block;

    font-size: 46px;
    font-weight: 800;
    line-height: 1;

    color: var(--primary);

    margin-bottom: 12px;
}

.stat span{
    font-size:15px;
    color:var(--muted);
}

.stat small{
    font-size:13px;
    font-weight:700;
    text-transform:uppercase;
    letter-spacing:1.5px;
    color:var(--muted);
}

/* Mobile */

@media (max-width: 900px) {

    .stats {
        margin-top: 0;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stat:nth-child(2) {
        border-right: none;
    }

    .stat {
        border-bottom: 1px solid var(--border);
    }

    .stat:nth-last-child(-n+2) {
        border-bottom: none;
    }

}

@media (max-width: 520px) {

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .stat {
        border-right: none;
        border-bottom: 1px solid var(--border);
    }

    .stat:last-child {
        border-bottom: none;
    }

}

/* Sections */

section {
  padding: 88px 0;
}

.section-title {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 52px;
}

.section-title h2 {
  font-size: clamp(34px, 4vw, 50px);
  line-height: 1.05;
  letter-spacing: -2px;
  margin-bottom: 16px;
}

.section-title p {
  color: var(--muted);
  font-size: 18px;
}

/* Cards */

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.card {
  padding: 34px;
  border: 1px solid var(--border);
  border-radius: 24px;
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.icon {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  background: var(--primary-soft);
  display: grid;
  place-items: center;
  color: var(--primary);
  font-size: 26px;
  margin-bottom: 22px;
}

.card h3 {
  font-size: 22px;
  margin-bottom: 12px;
}

.card p {
  color: var(--muted);
  margin-bottom: 20px;
}

.card a {
  color: var(--primary);
  font-weight: 700;
}

/* Platform */

.platform {
  background: var(--background-soft);
}

.platform-box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;

  background: linear-gradient(135deg, #fff7ed 0%, #ffffff 55%, #ecfdf5 100%);
  border: none;
  border-radius: 40px;
  padding: 70px 60px;
  box-shadow: var(--shadow-md);
}

.dyt-logo-text {
  font-size: clamp(36px, 5vw, 58px);
  line-height: 1.05;
  letter-spacing: -2px;
  margin-bottom: 18px;
}

.dyt-logo-text .dyt-discover {
    color: #004B99 !important;
}

.dyt-logo-text .dyt-your {
    color: #F57C00 !important;
}

.dyt-logo-text .dyt-tour {
    color: #4E8F2A !important;
}

.platform h2 {
  font-size: clamp(36px, 5vw, 58px);
  line-height: 1.05;
  letter-spacing: -2px;
  margin-bottom: 18px;
}

.platform p {
  color: var(--muted);
  font-size: 18px;
  margin-bottom: 24px;
}

.checklist {
  list-style: none;
  margin-bottom: 30px;
}

.checklist li {
  margin-bottom: 12px;
  color: var(--text);
}

.checklist li::before {
  content: "✓";
  color: var(--primary);
  font-weight: 900;
  margin-right: 10px;
}

.mockup{
    display:flex;
    justify-content:center;
    align-items:center;

    width:100%;
    height:100%;
    overflow:hidden;
}

.platform-image{
    width:100%;
    max-width:700px;
    height:auto;

    display:block;

    object-fit:contain;

    filter:
    drop-shadow(0 20px 40px rgba(0,0,0,.12))
    drop-shadow(0 40px 80px rgba(249,115,22,.08));

    transition:transform .3s ease;
}

.platform-image:hover {
    transform: translateY(-6px);
}

/* Trust */

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.trust-item {
  padding: 28px;
  border-radius: 22px;
  background: var(--white);
  border: 1px solid var(--border);
}

.trust-item strong {
  display: block;
  font-size: 18px;
  margin-bottom: 8px;
}

.trust-item p {
  color: var(--muted);
  font-size: 15px;
}

/* Destinations */

.destinations{
    padding:90px 0;
    background:var(--background);
}

.destination-grid{
    display:grid;
    grid-template-columns:repeat(6, 1fr);
    gap:20px;
    margin-top:50px;
    align-items:start;
}

.destination-card{

    background:#fff;

    border:1px solid var(--border);

    border-radius:22px;

    padding:20px 20px;

    text-align:center;

    transition:.25s ease;

    box-shadow:0 12px 30px rgba(0,0,0,.05);

}

.destination-card:hover{

    transform:translateY(-6px);

    border-color:var(--primary);

    box-shadow:0 20px 45px rgba(0,0,0,.08);

}

.destination-card img,
.destination-card .destination-image img {
    width: 110px !important;
    height: 110px !important;
    max-width: 110px !important;

    object-fit: contain;
    display: block;
    margin: 0 auto 18px;
}

.destination-card{
    background:#fff;
    border:1px solid var(--border);
    border-radius:22px;

    padding:24px 20px;

    text-align:center;

    transition:.25s ease;

    box-shadow:0 12px 30px rgba(0,0,0,.05);

    width:100%;
}

.destination-card span{

    display:block;

    font-size:20px;

    font-weight:700;

    color:var(--dark);

}

@media(max-width:1100px){

    .destination-grid{
        grid-template-columns:repeat(3,1fr);
    }

}

@media(max-width:700px){

    .destination-grid{
        grid-template-columns:repeat(2,1fr);
    }

}

@media(max-width:500px){

    .destination-grid{
        grid-template-columns:1fr;
    }

}

/* Company */

.company {
  background:
    radial-gradient(circle at 85% 10%, rgba(249, 115, 22, 0.18), transparent 32%),
    var(--dark);
  color: var(--white);
  padding: 74px 0;
}

.company-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 46px;
  align-items: start;
}

.company h2 {
  font-size: 42px;
  letter-spacing: -2px;
  margin-bottom: 18px;
}

.company p {
  color: #d1d5db;
  margin-bottom: 24px;
}

.legal-box {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 24px;
  padding: 34px;
}

.legal-row {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 20px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.legal-row:last-child {
  border-bottom: none;
}

.legal-row span {
  color: #9ca3af;
}

/* Vision */

/* ===========================
   Vision
=========================== */

.vision{

    padding:100px 0;

    background:linear-gradient(
        180deg,
        #ffffff 0%,
        #f8fafc 100%
    );

}

.vision-box{

    display:grid;
    grid-template-columns:1.2fr .8fr;

    gap:70px;

    align-items:center;

    background:#fff;

    border:1px solid var(--border);

    border-radius:36px;

    padding:70px;

    box-shadow:0 25px 70px rgba(17,24,39,.06);

}

.vision-content{

    max-width:700px;

}

.vision h2{

    font-size:clamp(38px,5vw,56px);

    line-height:1.05;

    letter-spacing:-2px;

    margin-bottom:24px;

    color:var(--dark);

}

.vision p{

    font-size:18px;

    line-height:1.8;

    color:var(--text);

    margin-bottom:20px;

}

.vision-values{

    display:flex;

    flex-direction:column;

    gap:18px;

}

.value{

    background:#fff;

    border:1px solid var(--border);

    border-radius:20px;

    padding:24px;

    box-shadow:0 10px 30px rgba(17,24,39,.05);

    transition:.25s;

}

.value:hover{

    transform:translateY(-4px);

    border-color:var(--primary);

}

.value h3{

    font-size:22px;

    margin-bottom:8px;

    color:var(--dark);

}

.value p{

    margin:0;

    font-size:15px;

    color:var(--muted);

}

@media(max-width:900px){

    .vision-box{

        grid-template-columns:1fr;

        padding:40px;

    }

}

.value-header{
    display:flex;
    align-items:center;
    gap:12px;
    margin-bottom:10px;
}

.value-header svg{
    width:26px;
    height:26px;
    color:var(--primary);
    flex-shrink:0;
}

.value h3{
    margin:0;
    font-size:22px;
    color:var(--dark);
}

.icon{
    width:64px;
    height:64px;

    display:flex;
    align-items:center;
    justify-content:center;

    border-radius:18px;

    background:rgba(249,115,22,.08);
    color:#f97316;
    margin-bottom:22px;
}

.icon svg{
    width:34px;
    height:34px;
}

/* ===========================
   Trust Strip
=========================== */

.trust-strip{
    padding:28px 0;
    background:var(--background-soft);
    border-top:1px solid var(--border);
    border-bottom:1px solid var(--border);
}

.trust-strip-grid{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:24px;
    flex-wrap:wrap;
}

.trust-badge{
    display:flex;
    align-items:center;
    gap:10px;

    background:none;
    border:none;
    box-shadow:none;
    padding:0;
}

.trust-badge:hover{
    transform:none;
}

.badge-icon{

    width:34px;
    height:34px;

    display:flex;
    align-items:center;
    justify-content:center;

    border-radius:50%;

    background:rgba(249,115,22,.10);

    color:var(--primary);

    flex-shrink:0;
}

.badge-icon svg{
    width:18px;
    height:18px;
}

.trust-badge h3{
    font-size:15px;
    font-weight:700;
    margin:0;
    line-height:1.2;
}

.trust-badge p{
    display:none;
}

@media(max-width:900px){

    .trust-strip-grid{
        justify-content:center;
        gap:20px;
    }

}

@media(max-width:600px){

    .trust-strip-grid{
        flex-direction:column;
        align-items:flex-start;
    }

}

/* Footer */

footer{

    background:#111827;

    color:#d1d5db;

}

.footer-brand{

    font-size:30px;

    font-weight:800;

    letter-spacing:-1px;

    color:#fff;

    margin-bottom:18px;

}

.footer-brand span{

    color:var(--primary);

    font-weight:700;

}

.footer-grid{

    display:grid;

    grid-template-columns:2fr 1fr 1fr 1fr 1.3fr;

    gap:50px;

    padding:70px 0;

}

.footer-logo{

    width:190px;

    margin-bottom:20px;

}

.footer-description{

    color:#9ca3af;

    line-height:1.8;

    max-width:340px;

}

.footer-grid h4{

    color:#fff;

    margin-bottom:18px;

    font-size:17px;

}

.footer-grid a{

    display:block;

    color:#9ca3af;

    margin-bottom:12px;

    transition:.2s;

}

.footer-grid a:hover{

    color:#fff;

}

.footer-grid p{

    color:#9ca3af;

    line-height:1.7;

}

.footer-bottom{

    border-top:1px solid rgba(255,255,255,.08);

    padding:22px 0;

}

.footer-bottom-inner{

    display:flex;

    justify-content:space-between;

    flex-wrap:wrap;

    gap:20px;

    font-size:14px;

    color:#9ca3af;

}

@media(max-width:900px){

    .footer-grid{

        grid-template-columns:1fr 1fr;

    }

}

@media(max-width:600px){

    .footer-grid{

        grid-template-columns:1fr;

    }

    .footer-bottom-inner{

        flex-direction:column;

    }

}

/* Mobile */

@media (max-width: 900px) {
  .nav-links a:not(.btn) {
  display: none;
}

.nav-links {
  display: flex;
  gap: 0;
}

.nav .btn {
  padding: 10px 16px;
  font-size: 14px;
}

  .hero-grid,
  .platform-box,
  .company-grid {
    grid-template-columns: 1fr;
  }

  .stats-grid,
  .cards,
  .trust-grid {
    grid-template-columns: 1fr;
  }

  .stat {
    border-right: none;
    border-bottom: 1px solid var(--border);
  }

  .stat:last-child {
    border-bottom: none;
  }

  h1 {
    letter-spacing: -2px;
  }

  .hero-card {
    min-height: 360px;
  }

  .mission-box {
    left: 20px;
    right: 20px;
    width: auto;
  }

  .platform-box {
    padding: 30px;
  }

  .legal-row {
    grid-template-columns: 1fr;
    gap: 4px;
  }
}

@media (max-width: 520px) {
  .nav {
    height: 70px;
  }

  .logo {
    font-size: 24px;
  }

  .hero {
    padding: 58px 0 48px;
  }

  .hero p,
  .section-title p,
  .platform p {
    font-size: 16px;
  }

  section {
    padding: 64px 0;
  }

  .card,
  .trust-item,
  .legal-box {
    padding: 24px;
  }

  .footer-links {
    flex-direction: column;
    gap: 10px;
  }
}

