.elementor-kit-13{--e-global-color-primary:#6EC1E4;--e-global-color-secondary:#54595F;--e-global-color-text:#7A7A7A;--e-global-color-accent:#61CE70;--e-global-typography-primary-font-family:"Roboto";--e-global-typography-primary-font-weight:600;--e-global-typography-secondary-font-family:"Roboto Slab";--e-global-typography-secondary-font-weight:400;--e-global-typography-text-font-family:"Roboto";--e-global-typography-text-font-weight:400;--e-global-typography-accent-font-family:"Roboto";--e-global-typography-accent-font-weight:500;}.elementor-section.elementor-section-boxed > .elementor-container{max-width:1140px;}.e-con{--container-max-width:1140px;}.elementor-widget:not(:last-child){--kit-widget-spacing:20px;}.elementor-element{--widgets-spacing:20px 20px;--widgets-spacing-row:20px;--widgets-spacing-column:20px;}{}h1.entry-title{display:var(--page-title-display);}.elementor-kit-13 e-page-transition{background-color:#FFBC7D;}@media(max-width:1024px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:1024px;}.e-con{--container-max-width:1024px;}}@media(max-width:767px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:767px;}.e-con{--container-max-width:767px;}}/* Start custom CSS */*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  :root {
    --green: #1a6b3c;
    --green-light: #2d9e5f;
    --green-pale: #e8f5ee;
    --ocean: #0a4d6e;
    --ocean-light: #1477a2;
    --sky: #d4eef8;
    --sand: #f5f0e8;
    --dark: #0d1a12;
    --text: #1c2b22;
    --muted: #5a7260;
    --white: #ffffff;
    --accent: #e8622a;
  }

  html { scroll-behavior: smooth; }

  body {
    font-family: 'DM Sans', sans-serif;
    background: var(--dark);
    color: var(--white);
    overflow-x: hidden;
  }

  /* ---- HERO ---- */
  .hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px 40px 60px;
    overflow: hidden;
    background: var(--dark);
  }

  .hero-bg {
    position: absolute;
    inset: 0;
    background:
      radial-gradient(ellipse 80% 60% at 70% 30%, rgba(26,107,60,0.35) 0%, transparent 60%),
      radial-gradient(ellipse 60% 80% at 20% 80%, rgba(10,77,110,0.4) 0%, transparent 55%),
      radial-gradient(ellipse 40% 40% at 90% 85%, rgba(232,98,42,0.15) 0%, transparent 50%);
  }

  /* animated globe rings */
  .globe {
    position: absolute;
    right: -80px;
    top: 50%;
    transform: translateY(-50%);
    width: 600px;
    height: 600px;
    opacity: 0.12;
  }

  .globe-ring {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 1px solid var(--green-light);
    animation: spin linear infinite;
  }

  .globe-ring:nth-child(1) { animation-duration: 20s; }
  .globe-ring:nth-child(2) { inset: 40px; border-color: var(--ocean-light); animation-duration: 30s; animation-direction: reverse; }
  .globe-ring:nth-child(3) { inset: 80px; border-color: var(--accent); animation-duration: 45s; }
  .globe-ring:nth-child(4) { inset: 130px; border-color: var(--green-light); animation-duration: 25s; animation-direction: reverse; }
  .globe-ring:nth-child(5) { inset: 200px; border-color: var(--ocean-light); animation-duration: 35s; }

  @keyframes spin {
    to { transform: rotate(360deg); }
  }

  .hero-content {
    position: relative;
    z-index: 2;
    max-width: 720px;
  }

  .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(26,107,60,0.3);
    border: 1px solid rgba(45,158,95,0.4);
    border-radius: 100px;
    padding: 6px 16px;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #7dd4a8;
    margin-bottom: 32px;
    animation: fadeUp 0.8s ease both;
  }

  .badge-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #7dd4a8;
    animation: pulse 2s ease infinite;
  }

  @keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.4; transform: scale(0.7); }
  }

  h1 {
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: clamp(52px, 8vw, 96px);
    line-height: 0.95;
    letter-spacing: -0.03em;
    animation: fadeUp 0.8s 0.1s ease both;
  }

  h1 .line-green { color: #7dd4a8; }
  h1 .line-small {
    font-size: clamp(18px, 3vw, 32px);
    font-weight: 400;
    color: rgba(255,255,255,0.5);
    display: block;
    margin-top: 12px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    font-family: 'DM Sans', sans-serif;
  }

  .hero-desc {
    margin-top: 28px;
    font-size: 17px;
    line-height: 1.7;
    color: rgba(255,255,255,0.65);
    max-width: 560px;
    animation: fadeUp 0.8s 0.2s ease both;
  }

  .hero-meta {
    display: flex;
    gap: 40px;
    margin-top: 48px;
    animation: fadeUp 0.8s 0.3s ease both;
  }

  .meta-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
  }

  .meta-label {
    font-size: 11px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.4);
  }

  .meta-value {
    font-family: 'Syne', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #7dd4a8;
  }

  .hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 40px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 12px;
    color: rgba(255,255,255,0.3);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    animation: fadeUp 1s 0.6s ease both;
  }

  .scroll-line {
    width: 40px;
    height: 1px;
    background: rgba(255,255,255,0.2);
  }

  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
  }

  /* ---- NAV ---- */
  nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    padding: 20px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    backdrop-filter: blur(20px);
    background: rgba(13,26,18,0.7);
    border-bottom: 1px solid rgba(255,255,255,0.06);
  }

  .nav-logo {
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: 22px;
    letter-spacing: -0.02em;
    color: white;
    text-decoration: none;
  }

  .nav-logo span { color: #7dd4a8; }

  .nav-links {
    display: flex;
    gap: 32px;
    list-style: none;
  }

  .nav-links a {
    font-size: 13px;
    font-weight: 500;
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    letter-spacing: 0.02em;
    transition: color 0.2s;
  }

  .nav-links a:hover { color: #7dd4a8; }

  /* ---- SECTIONS ---- */
  section {
    padding: 100px 40px;
    max-width: 1200px;
    margin: 0 auto;
  }

  .section-label {
    font-size: 11px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #7dd4a8;
    margin-bottom: 16px;
    font-weight: 500;
  }

  .section-title {
    font-family: 'Syne', sans-serif;
    font-size: clamp(32px, 4vw, 52px);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.02em;
  }

  .section-body {
    font-size: 16px;
    line-height: 1.75;
    color: rgba(255,255,255,0.6);
    max-width: 640px;
    margin-top: 20px;
  }

  /* ---- ABOUT STRIP ---- */
  .about-strip {
    background: #111d15;
    padding: 0;
    max-width: none;
  }

  .about-strip-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 100px 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
  }

  .stat-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2px;
    background: rgba(255,255,255,0.06);
    border-radius: 16px;
    overflow: hidden;
  }

  .stat-box {
    background: #0d1a12;
    padding: 32px;
    transition: background 0.3s;
  }

  .stat-box:hover { background: #152b1e; }

  .stat-num {
    font-family: 'Syne', sans-serif;
    font-size: 42px;
    font-weight: 800;
    color: #7dd4a8;
    line-height: 1;
  }

  .stat-desc {
    font-size: 13px;
    color: rgba(255,255,255,0.5);
    margin-top: 8px;
    line-height: 1.5;
  }

  /* ---- FLAGS ---- */
  .hosts-section {
    background: #0d1a12;
    padding: 0;
    max-width: none;
  }

  .hosts-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 40px;
    display: flex;
    gap: 24px;
    align-items: center;
    flex-wrap: wrap;
  }

  .host-badge {
    display: flex;
    align-items: center;
    gap: 14px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px;
    padding: 16px 24px;
    flex: 1;
    min-width: 200px;
  }

  .host-flag { font-size: 32px; }

  .host-info {}
  .host-role { font-size: 11px; color: rgba(255,255,255,0.4); letter-spacing: 0.08em; text-transform: uppercase; }
  .host-name { font-family: 'Syne', sans-serif; font-size: 16px; font-weight: 700; margin-top: 2px; }

  /* ---- TIMELINE ---- */
  .timeline {
    position: relative;
    margin-top: 60px;
  }

  .timeline::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 0;
    bottom: 0;
    width: 1px;
    background: rgba(45,158,95,0.3);
  }

  .timeline-item {
    display: flex;
    gap: 40px;
    margin-bottom: 40px;
    position: relative;
  }

  .timeline-dot {
    width: 41px;
    height: 41px;
    min-width: 41px;
    border-radius: 50%;
    background: var(--dark);
    border: 2px solid var(--green-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    font-size: 13px;
    color: #7dd4a8;
    z-index: 1;
  }

  .timeline-content { padding-top: 8px; }
  .timeline-date { font-size: 12px; color: #7dd4a8; letter-spacing: 0.08em; text-transform: uppercase; font-weight: 500; }
  .timeline-title { font-family: 'Syne', sans-serif; font-weight: 600; font-size: 17px; margin-top: 4px; }
  .timeline-text { font-size: 14px; color: rgba(255,255,255,0.5); margin-top: 6px; line-height: 1.6; }

  /* ---- FAQ ---- */
  .faq-section {
    background: #070e09;
    padding: 0;
    max-width: none;
  }

  .faq-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 100px 40px;
  }

  .faq-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 80px;
    margin-top: 60px;
    align-items: start;
  }

  .faq-list { display: flex; flex-direction: column; gap: 2px; }

  .faq-item {
    border-radius: 12px;
    overflow: hidden;
    background: #0d1a12;
    transition: background 0.2s;
  }

  .faq-item.open { background: #152b1e; }

  .faq-q {
    width: 100%;
    background: none;
    border: none;
    color: white;
    font-family: 'DM Sans', sans-serif;
    font-size: 15px;
    font-weight: 500;
    padding: 20px 24px;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    transition: color 0.2s;
  }

  .faq-item.open .faq-q { color: #7dd4a8; }

  .faq-icon {
    width: 24px;
    height: 24px;
    min-width: 24px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    transition: transform 0.3s, border-color 0.3s;
    line-height: 1;
  }

  .faq-item.open .faq-icon {
    transform: rotate(45deg);
    border-color: #7dd4a8;
    color: #7dd4a8;
  }

  .faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
  }

  .faq-a-inner {
    padding: 0 24px 20px;
    font-size: 14px;
    line-height: 1.75;
    color: rgba(255,255,255,0.6);
  }

  /* ---- NEWSLETTER ---- */
  .newsletter-section {
    background: #111d15;
    padding: 0;
    max-width: none;
  }

  .newsletter-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 100px 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
  }

  .nl-visual {
    position: relative;
    height: 320px;
    border-radius: 20px;
    overflow: hidden;
    background: linear-gradient(135deg, #0a2e16 0%, #071a28 100%);
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .nl-visual::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
      radial-gradient(circle at 30% 40%, rgba(26,107,60,0.5) 0%, transparent 50%),
      radial-gradient(circle at 80% 70%, rgba(10,77,110,0.4) 0%, transparent 40%);
  }

  .nl-globe-text {
    position: relative;
    font-family: 'Syne', sans-serif;
    font-size: 80px;
    font-weight: 800;
    color: rgba(255,255,255,0.08);
    text-align: center;
    line-height: 1;
    user-select: none;
  }

  .nl-globe-text span {
    display: block;
    font-size: 120px;
    color: rgba(45,158,95,0.2);
  }

  .nl-form-area {}

  .nl-title {
    font-family: 'Syne', sans-serif;
    font-size: clamp(28px, 3vw, 40px);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.02em;
  }

  .nl-title em { color: #7dd4a8; font-style: normal; }

  .nl-sub {
    font-size: 15px;
    color: rgba(255,255,255,0.55);
    line-height: 1.7;
    margin-top: 16px;
    max-width: 420px;
  }

  .nl-form {
    margin-top: 36px;
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .nl-row { display: flex; gap: 12px; }

  .nl-input {
    flex: 1;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 10px;
    padding: 14px 18px;
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    color: white;
    outline: none;
    transition: border-color 0.2s, background 0.2s;
  }

  .nl-input::placeholder { color: rgba(255,255,255,0.3); }
  .nl-input:focus { border-color: rgba(45,158,95,0.5); background: rgba(255,255,255,0.08); }

  .nl-select {
    flex: 1;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 10px;
    padding: 14px 18px;
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    color: rgba(255,255,255,0.7);
    outline: none;
    cursor: pointer;
    transition: border-color 0.2s;
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'%3E%3Cpath d='M1 1l5 5 5-5' stroke='rgba(255,255,255,0.4)' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
  }

  .nl-select option { background: #111d15; }
  .nl-select:focus { border-color: rgba(45,158,95,0.5); }

  .nl-btn {
    background: var(--green);
    border: none;
    border-radius: 10px;
    padding: 16px 28px;
    font-family: 'Syne', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: white;
    cursor: pointer;
    letter-spacing: 0.02em;
    transition: background 0.2s, transform 0.15s;
    position: relative;
    overflow: hidden;
  }

  .nl-btn::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, transparent, rgba(255,255,255,0.08), transparent);
    transform: translateX(-100%);
    transition: transform 0.4s;
  }

  .nl-btn:hover { background: var(--green-light); transform: translateY(-1px); }
  .nl-btn:hover::after { transform: translateX(100%); }

  .nl-consent {
    font-size: 12px;
    color: rgba(255,255,255,0.3);
    line-height: 1.6;
  }

  .nl-consent a { color: rgba(125,212,168,0.7); text-decoration: none; }

  .nl-success {
    display: none;
    background: rgba(45,158,95,0.15);
    border: 1px solid rgba(45,158,95,0.4);
    border-radius: 10px;
    padding: 20px;
    text-align: center;
  }

  .nl-success.show { display: block; }
  .nl-success-icon { font-size: 32px; margin-bottom: 8px; }
  .nl-success-title { font-family: 'Syne', sans-serif; font-size: 18px; font-weight: 700; color: #7dd4a8; }
  .nl-success-text { font-size: 13px; color: rgba(255,255,255,0.55); margin-top: 6px; }

  /* ---- FOOTER ---- */
  footer {
    background: var(--dark);
    padding: 60px 40px 40px;
    max-width: none;
    border-top: 1px solid rgba(255,255,255,0.06);
  }

  .footer-inner {
    max-width: 1200px;
    margin: 0 auto;
  }

  .footer-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
  }

  .footer-brand {}
  .footer-logo {
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: 24px;
    letter-spacing: -0.02em;
    color: white;
  }

  .footer-logo span { color: #7dd4a8; }

  .footer-tagline {
    font-size: 13px;
    color: rgba(255,255,255,0.4);
    margin-top: 8px;
    max-width: 240px;
    line-height: 1.6;
  }

  .footer-links {
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
  }

  .footer-col h4 {
    font-family: 'Syne', sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.5);
    margin-bottom: 16px;
  }

  .footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
  .footer-col ul a { font-size: 13px; color: rgba(255,255,255,0.45); text-decoration: none; transition: color 0.2s; }
  .footer-col ul a:hover { color: #7dd4a8; }

  .footer-bottom {
    padding-top: 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
  }

  .footer-copy {
    font-size: 12px;
    color: rgba(255,255,255,0.25);
  }

  .footer-disclaimer {
    font-size: 11px;
    color: rgba(255,255,255,0.18);
    max-width: 500px;
    text-align: right;
    line-height: 1.5;
  }

  /* ---- DIVIDER ---- */
  .full-divider {
    height: 1px;
    background: rgba(255,255,255,0.05);
  }

  /* ---- RESPONSIVE ---- */
  @media (max-width: 900px) {
    nav { padding: 16px 20px; }
    .nav-links { display: none; }
    .hero { padding: 100px 24px 60px; }
    section { padding: 70px 24px; }
    .about-strip-inner,
    .newsletter-inner,
    .faq-grid {
      grid-template-columns: 1fr;
      gap: 40px;
    }
    .hosts-inner { padding: 50px 24px; }
    .hero-meta { gap: 24px; flex-wrap: wrap; }
    .globe { display: none; }
    .stat-grid { grid-template-columns: 1fr 1fr; }
    footer { padding: 50px 24px 32px; }
    .footer-top { flex-direction: column; }
    .footer-bottom { flex-direction: column; text-align: center; }
    .footer-disclaimer { text-align: center; }
    .nl-row { flex-direction: column; }
  }/* End custom CSS */