/*
Theme Name: Acos Astra Child
Template: astra
Description: Prilagođena naslovna stranica za Acos računovodstvo d.o.o., izgrađena na Astra temi.
Version: 1.0
Author: Acos računovodstvo
*/

:root{
    --navy-900:#101a33;
    --navy-800:#152140;
    --navy-700:#1b2b52;
    --navy-600:#26386b;
    --gold-500:#f2a71b;
    --gold-400:#f5b73a;
    --white:#ffffff;
    --grey-100:#f6f7fb;
    --grey-400:#8891a5;
    --grey-700:#4c5468;
    --text-dark:#151c2e;
    --radius:14px;
    --shadow-lg:0 25px 60px -20px rgba(16,26,51,0.35);
    --shadow-card:0 15px 35px -15px rgba(16,26,51,0.25);
  }

  *{margin:0;padding:0;box-sizing:border-box;}

  html{scroll-behavior:smooth;overflow-x:hidden;max-width:100%;}

  body{
    font-family:'Inter', sans-serif;
    color:var(--text-dark);
    background:var(--white);
    line-height:1.6;
    overflow-x:hidden;
  }

  h1,h2,h3,h4{
    font-family:'Poppins', sans-serif;
    font-weight:700;
    line-height:1.15;
    letter-spacing:-0.01em;
  }

  a{text-decoration:none;color:inherit;}
  ul{list-style:none;}
  img{max-width:100%;display:block;}

  .acos-container{
    max-width:1200px;
    margin:0 auto;
    padding:0 32px;
  }

  .eyebrow{
    display:inline-block;
    font-family:'Inter', sans-serif;
    font-weight:700;
    font-size:13px;
    letter-spacing:0.14em;
    text-transform:uppercase;
    color:var(--gold-500);
    margin-bottom:16px;
  }

  .btn{
    display:inline-flex;
    align-items:center;
    gap:10px;
    padding:15px 30px;
    border-radius:50px;
    font-weight:600;
    font-size:14px;
    letter-spacing:0.03em;
    text-transform:uppercase;
    border:2px solid transparent;
    cursor:pointer;
    transition:all .25s ease;
  }
  .btn-primary{
    background:var(--gold-500);
    color:#000000 !important;
  }
  .btn-primary:hover{
    background:var(--gold-400);
    color:#000000 !important;
    transform:translateY(-2px);
  }
  .btn-outline{
    border-color:rgba(255,255,255,0.4);
    color:var(--white);
  }
  .btn-outline:hover{
    border-color:var(--white);
    background:rgba(255,255,255,0.08);
  }
  .btn-outline-dark{
    border-color:rgba(16,26,51,0.25);
    color:var(--navy-900);
  }
  .btn-outline-dark:hover{
    border-color:var(--navy-900);
    background:rgba(16,26,51,0.05);
  }

  /* ===== NAV ===== */
  #site-header{
    position:fixed !important;
    top:0 !important;left:0 !important;right:0 !important;
    width:100% !important;
    max-width:none !important;
    margin:0 !important;
    z-index:1000;
    padding:20px 0;
    transition:all .3s ease;
  }
  #site-header.scrolled{
    background:var(--navy-900);
    padding:14px 0;
    box-shadow:0 6px 24px rgba(0,0,0,0.2);
  }
  .nav-wrap{
    display:flex;
    align-items:center;
    gap:56px;
  }
  .nav-cta{margin-left:auto;}
  .logo{
    font-family:'Poppins', sans-serif;
    font-weight:800;
    font-size:22px;
    color:var(--white);
    display:flex;
    align-items:center;
    gap:10px;
  }
  .logo span{color:var(--gold-500);}
  .logo .mark{
    width:38px;height:38px;
    background:var(--gold-500);
    border-radius:10px;
    display:flex;align-items:center;justify-content:center;
    color:var(--navy-900);
    font-weight:800;
    font-size:16px;
  }
  #site-header nav ul{
    display:flex !important;
    flex-direction:row !important;
    flex-wrap:nowrap !important;
    align-items:center !important;
    gap:36px;
    list-style:none !important;
    margin:0 !important;
    padding:0 !important;
  }
  #site-header nav ul li{
    display:list-item;
    list-style:none !important;
    margin:0 !important;
    padding:0 !important;
  }
  #site-header nav a{
    color:rgba(255,255,255,0.85);
    font-weight:500;
    font-size:15px;
    position:relative;
    padding:6px 0;
    transition:color .2s ease;
    white-space:nowrap;
  }
  #site-header nav a:hover{color:var(--white);}
  #site-header nav a::after{
    content:'';
    position:absolute;
    left:0;bottom:0;
    width:0;height:2px;
    background:var(--gold-500);
    transition:width .25s ease;
  }
  #site-header nav a:hover::after{width:100%;}
  .nav-cta{display:none;}
  @media(min-width:900px){.nav-cta{display:inline-flex;}}

  .burger{
    display:none;
    flex-direction:column;
    gap:5px;
    cursor:pointer;
    background:none;
    border:none;
    margin-left:auto;
    position:relative;
    z-index:1200;
  }
  .burger span{
    width:26px;height:2px;background:var(--white);
    transition:transform .25s ease, opacity .25s ease;
  }
  .burger.active span:nth-child(1){transform:translateY(7px) rotate(45deg);}
  .burger.active span:nth-child(2){opacity:0;}
  .burger.active span:nth-child(3){transform:translateY(-7px) rotate(-45deg);}

  @media(max-width:899px){
    #site-header nav ul{
      display:flex !important;
      flex-direction:column !important;
      position:fixed;
      top:0;right:-100%;
      width:100%;
      max-width:none;
      height:100vh;
      background:var(--navy-900);
      justify-content:center !important;
      align-items:center !important;
      text-align:center;
      padding:40px;
      gap:30px;
      transition:right .35s ease;
      z-index:1100;
    }
    #site-header nav ul li{
      width:100%;
    }
    #site-header nav a{
      font-size:22px;
      display:block;
    }
    #site-header nav ul.open{right:0;}
    .burger{display:flex;}
  }

  /* ===== HERO ===== */
  .hero{
    position:relative;
    background:linear-gradient(135deg, var(--navy-900) 0%, var(--navy-700) 60%, var(--navy-600) 100%);
    color:var(--white);
    padding:180px 0 140px;
    overflow:hidden;
  }
  .hero::before{
    content:'';
    position:absolute;
    top:-120px;right:-120px;
    width:520px;height:520px;
    border-radius:50%;
    background:radial-gradient(circle, rgba(242,167,27,0.18) 0%, rgba(242,167,27,0) 70%);
  }
  .hero::after{
    content:'';
    position:absolute;
    bottom:-200px;left:10%;
    width:600px;height:600px;
    border-radius:50%;
    border:1px solid rgba(255,255,255,0.06);
  }
  .hero-deco-circle{
    position:absolute;
    top:18%;
    right:6%;
    width:280px;height:280px;
    border-radius:50%;
    border:1px solid rgba(255,255,255,0.14);
    pointer-events:none;
  }
  .hero-deco-circle::before{
    content:'';
    position:absolute;
    inset:34px;
    border-radius:50%;
    border:1px solid rgba(242,167,27,0.22);
  }
  .hero-deco-line{
    position:absolute;
    top:0;bottom:0;
    right:14%;
    width:1px;
    background:linear-gradient(to bottom, rgba(255,255,255,0) 0%, rgba(255,255,255,0.12) 50%, rgba(255,255,255,0) 100%);
    pointer-events:none;
  }
  @media(max-width:960px){
    .hero-deco-circle, .hero-deco-line{display:none;}
  }
  .hero-grid{
    position:relative;
    z-index:2;
    display:grid;
    grid-template-columns:1fr 0.9fr;
    gap:60px;
    align-items:center;
  }
  .hero-grid > div:first-child{
    padding-left:0;
  }
  @media(min-width:961px){
    .hero-grid > div:first-child{
      padding-left:32px;
    }
  }
  @media(max-width:960px){
    .hero-grid{grid-template-columns:1fr;}
  }
  .hero h1{
    font-size:clamp(36px, 5vw, 58px);
    margin-bottom:24px;
    color:var(--white);
  }
  .hero h1 em{
    font-style:normal;
    color:var(--gold-500);
  }
  .hero p.lead{
    font-size:17px;
    color:rgba(255,255,255,0.75);
    max-width:520px;
    margin-bottom:36px;
  }
  .hero-btns{
    display:flex;
    gap:18px;
    flex-wrap:wrap;
  }
  .hero-stats{
    display:flex;
    gap:36px;
    margin-top:56px;
    flex-wrap:wrap;
  }
  .hero-stats div strong{
    display:block;
    font-family:'Poppins',sans-serif;
    font-size:30px;
    color:var(--gold-500);
  }
  .hero-stats div span{
    font-size:13px;
    color:rgba(255,255,255,0.6);
    text-transform:uppercase;
    letter-spacing:0.05em;
  }

  .hero-visual{
    position:relative;
  }
  .hero-card{
    background:var(--white);
    border-radius:var(--radius);
    padding:32px;
    box-shadow:var(--shadow-lg);
    max-width:400px;
    margin-left:auto;
  }
  .hero-card .badge{
    width:48px;height:48px;
    border-radius:12px;
    background:var(--navy-900);
    display:flex;align-items:center;justify-content:center;
    margin-bottom:20px;
  }
  .hero-card .badge svg{width:24px;height:24px;stroke:var(--gold-500);}
  .hero-card h4{font-size:19px;margin-bottom:10px;color:var(--navy-900);}
  .hero-card p{font-size:14px;color:var(--grey-700);}
  .hero-float{
    position:absolute;
    top:-30px;left:-40px;
    background:var(--gold-500);
    color:var(--navy-900);
    padding:18px 22px;
    border-radius:var(--radius);
    box-shadow:var(--shadow-card);
    font-weight:700;
    font-size:14px;
    display:flex;
    align-items:center;
    gap:10px;
  }
  @media(max-width:600px){.hero-float{display:none;}}

  /* ===== TRUST STRIP ===== */
  .trust{
    background:var(--grey-100);
    padding:36px 0;
  }
  .trust .acos-container{
    display:flex;
    justify-content:space-between;
    flex-wrap:wrap;
    gap:24px;
    align-items:center;
  }
  .trust-item{
    display:flex;
    align-items:center;
    gap:12px;
    color:var(--grey-700);
    font-weight:600;
    font-size:14px;
  }
  .trust-item .dot{
    width:8px;height:8px;border-radius:50%;background:var(--gold-500);
  }

  /* ===== SECTION SHARED ===== */
  section{padding:110px 0;}
  .section-head{
    max-width:640px;
    margin-bottom:64px;
  }
  .section-head.center{margin-left:auto;margin-right:auto;text-align:center;}
  .section-head h2{
    font-size:clamp(28px,3.4vw,40px);
    color:var(--navy-900);
  }
  .section-head p{
    margin-top:18px;
    color:var(--grey-700);
    font-size:16px;
  }

  /* ===== ABOUT ===== */
  #about{background:var(--white);}
  .about-grid{
    display:grid;
    grid-template-columns:0.85fr 1.15fr;
    gap:72px;
    align-items:center;
  }
  @media(max-width:960px){.about-grid{grid-template-columns:1fr;gap:48px;}}

  .about-visual{
    position:relative;
  }
  .about-photo{
    border-radius:var(--radius);
    overflow:hidden;
    box-shadow:var(--shadow-card);
  }
  .about-photo-inner{
    width:100%;
    aspect-ratio:4/5;
    object-fit:cover;
    display:block;
    background:linear-gradient(160deg, var(--navy-700), var(--navy-900));
  }
  .about-badge{
    position:absolute;
    bottom:-28px;right:-24px;
    background:var(--navy-900);
    color:var(--white);
    padding:22px 26px;
    border-radius:var(--radius);
    box-shadow:var(--shadow-lg);
  }
  .about-badge strong{
    display:block;
    font-family:'Poppins',sans-serif;
    font-size:28px;
    color:var(--gold-500);
  }
  .about-badge span{font-size:12px;color:rgba(255,255,255,0.7);text-transform:uppercase;letter-spacing:0.05em;}

  .about-points{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:24px;
    margin-top:36px;
  }
  .about-btn-note{
    margin-top:10px;
    font-size:12.5px;
    color:var(--grey-400);
    font-style:italic;
  }
  @media(max-width:520px){.about-points{grid-template-columns:1fr;}}
  .about-point{
    display:flex;
    gap:14px;
    align-items:flex-start;
  }
  .about-point .icon{
    width:38px;height:38px;
    min-width:38px;
    border-radius:10px;
    background:rgba(242,167,27,0.12);
    display:flex;align-items:center;justify-content:center;
  }
  .about-point .icon svg{width:18px;height:18px;stroke:var(--gold-500);}
  .about-point h5{font-size:15px;margin-bottom:4px;color:var(--navy-900);}
  .about-point p{font-size:13.5px;color:var(--grey-700);}

  /* ===== TEAM (within About) ===== */
  .team{
    margin-top:90px;
  }
  .team-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:48px;
    max-width:520px;
    margin:0 auto;
  }
  @media(max-width:640px){.team-grid{grid-template-columns:1fr;max-width:280px;}}
  .team-card{
    text-align:center;
    transition:transform .25s ease;
  }
  .team-card:hover{
    transform:translateY(-4px);
  }
  .team-photo{
    width:140px;
    height:140px;
    border-radius:50%;
    object-fit:cover;
    display:block;
    margin:0 auto 20px;
    border:4px solid var(--white);
    box-shadow:var(--shadow-card);
    background:linear-gradient(160deg, var(--navy-600), var(--navy-800));
  }
  .team-info h4{font-size:17px;color:var(--navy-900);margin-bottom:4px;}
  .team-info span{
    display:block;
    font-size:12.5px;
    color:var(--gold-500);
    font-weight:600;
    text-transform:uppercase;
    letter-spacing:0.04em;
    margin-bottom:10px;
  }
  .team-info p{font-size:13.5px;color:var(--grey-700);}

  /* ===== CONTACT ===== */
  #contact{
    background:var(--navy-900);
    color:var(--white);
    position:relative;
    overflow:hidden;
  }
  #contact::before{
    content:'';
    position:absolute;
    top:-160px;left:-160px;
    width:420px;height:420px;
    border-radius:50%;
    background:radial-gradient(circle, rgba(242,167,27,0.14) 0%, rgba(242,167,27,0) 70%);
  }
  #contact .section-head p{color:rgba(255,255,255,0.65);}
  #contact .section-head h2{color:var(--white);}

  .contact-grid{
    position:relative;
    z-index:2;
    display:grid;
    grid-template-columns:0.95fr 1.05fr;
    gap:56px;
  }
  @media(max-width:960px){.contact-grid{grid-template-columns:1fr;}}

  .contact-info{
    display:flex;
    flex-direction:column;
    gap:26px;
  }
  .contact-item{
    display:flex;
    gap:18px;
    align-items:flex-start;
    padding:22px;
    background:rgba(255,255,255,0.04);
    border:1px solid rgba(255,255,255,0.08);
    border-radius:var(--radius);
  }
  .contact-item .icon{
    width:44px;height:44px;
    min-width:44px;
    border-radius:12px;
    background:var(--gold-500);
    display:flex;align-items:center;justify-content:center;
  }
  .contact-item .icon svg{width:20px;height:20px;stroke:var(--navy-900);}
  .contact-item h5{font-size:14px;text-transform:uppercase;letter-spacing:0.05em;color:var(--gold-500);margin-bottom:6px;}
  .contact-item p{font-size:15px;color:rgba(255,255,255,0.85);}
  .contact-item a{color:rgba(255,255,255,0.85);}
  .contact-item a:hover{color:var(--gold-500);}

  .map-wrap{
    border-radius:var(--radius);
    overflow:hidden;
    box-shadow:var(--shadow-lg);
    min-height:340px;
    border:1px solid rgba(255,255,255,0.1);
  }
  .map-wrap iframe{
    width:100%;
    height:100%;
    min-height:340px;
    border:0;
    display:block;
    filter:grayscale(0.15) contrast(1.05);
  }

  .oib-line{
    margin-top:6px;
    font-size:13px;
    color:rgba(255,255,255,0.5);
  }

  /* ===== FOOTER ===== */
  footer{
    background:var(--navy-800);
    color:rgba(255,255,255,0.6);
    padding:32px 0;
    font-size:13.5px;
  }
  footer .acos-container{
    display:flex;
    justify-content:space-between;
    flex-wrap:wrap;
    gap:12px;
  }
  footer strong{color:rgba(255,255,255,0.85);}

  /* ===== SERVICES ===== */
  #services{
    background:var(--grey-100);
    position:relative;
    overflow:hidden;
  }
  .services-deco{
    position:absolute;
    inset:0;
    pointer-events:none;
    opacity:0.5;
    background-image:
      radial-gradient(circle at 8% 12%, rgba(242,167,27,0.10) 0%, rgba(242,167,27,0) 60%),
      radial-gradient(circle at 92% 85%, rgba(16,26,51,0.06) 0%, rgba(16,26,51,0) 60%);
  }
  .hero-num{
    position:absolute;
    font-family:'Poppins', sans-serif;
    font-weight:800;
    line-height:1;
    color:rgba(255,255,255,0.06);
    pointer-events:none;
    z-index:1;
  }
  .hero-num.hn1{top:14%;left:2%;font-size:120px;}
  .hero-num.hn2{bottom:6%;left:38%;font-size:90px;color:rgba(242,167,27,0.08);}
  .hero-num.hn3{top:8%;right:34%;font-size:70px;}
  @media(max-width:768px){.hero-num{display:none;}}

  /* ===== SERVICE MODAL (popup) ===== */
  .service-card{cursor:pointer;}
  .service-modal-overlay{
    position:fixed;
    inset:0;
    background:rgba(16,26,51,0.72);
    z-index:2000;
    display:none;
    align-items:center;
    justify-content:center;
    padding:24px;
  }
  .service-modal-overlay.open{display:flex;}
  .service-modal{
    background:var(--white);
    border-radius:var(--radius);
    max-width:520px;
    width:100%;
    padding:40px;
    position:relative;
    box-shadow:var(--shadow-lg);
    animation:acosModalIn .25s ease;
  }
  @keyframes acosModalIn{
    from{opacity:0;transform:translateY(16px) scale(0.98);}
    to{opacity:1;transform:translateY(0) scale(1);}
  }
  .service-modal .icon{
    width:56px;height:56px;
    border-radius:14px;
    background:var(--navy-900);
    display:flex;align-items:center;justify-content:center;
    margin-bottom:22px;
  }
  .service-modal .icon svg{width:26px;height:26px;stroke:var(--gold-500);}
  .service-modal h3{font-size:22px;color:var(--navy-900);margin-bottom:14px;}
  .service-modal p{font-size:14.5px;color:var(--grey-700);margin-bottom:24px;}
  .service-modal-close{
    position:absolute;
    top:18px;right:18px;
    width:34px;height:34px;
    border-radius:50%;
    border:none;
    background:var(--grey-100);
    color:var(--navy-900);
    font-size:18px;
    cursor:pointer;
    display:flex;align-items:center;justify-content:center;
    transition:background .2s ease;
  }
  .service-modal-close:hover{background:#e5e7eb;}
  .services-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:28px;
  }
  @media(max-width:900px){.services-grid{grid-template-columns:repeat(2,1fr);}}
  @media(max-width:600px){.services-grid{grid-template-columns:1fr;}}
  .service-card{
    background:var(--white);
    border-radius:var(--radius);
    padding:34px 28px;
    box-shadow:var(--shadow-card);
    border:2px solid transparent;
    transition:transform .3s ease, box-shadow .3s ease, border-color .3s ease;
  }
  .service-card:hover{
    transform:translateY(-10px);
    box-shadow:var(--shadow-lg);
    border-color:var(--gold-500);
  }
  .service-card .icon{
    width:52px;height:52px;
    border-radius:14px;
    background:var(--navy-900);
    display:flex;align-items:center;justify-content:center;
    margin-bottom:20px;
    transition:background .3s ease, transform .3s ease;
  }
  .service-card:hover .icon{
    background:var(--gold-500);
    transform:scale(1.08);
  }
  .service-card .icon svg{width:24px;height:24px;stroke:var(--gold-500);transition:stroke .3s ease;}
  .service-card:hover .icon svg{stroke:var(--navy-900);}
  .service-card h4{font-size:18px;color:var(--navy-900);margin-bottom:10px;}
  .service-card p{font-size:14px;color:var(--grey-700);}
  .service-more{
    display:inline-block;
    margin-top:14px;
    font-size:13px;
    font-weight:700;
    color:var(--gold-500);
    text-transform:uppercase;
    letter-spacing:0.03em;
    transition:transform .2s ease;
  }
  .service-card:hover .service-more{transform:translateX(4px);}

  /* ===== FEATURES ===== */
  #features{background:var(--white);}
  .features-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:32px;
  }
  @media(max-width:900px){.features-grid{grid-template-columns:1fr;}}
  .feature-card{
    text-align:center;
    padding:40px 28px;
    border:1px solid rgba(16,26,51,0.08);
    border-radius:var(--radius);
    position:relative;
  }
  .feature-num{
    position:absolute;
    top:22px;right:26px;
    font-family:'Poppins',sans-serif;
    font-weight:800;
    font-size:14px;
    color:rgba(16,26,51,0.12);
  }
  .feature-card .icon{
    width:64px;height:64px;
    border-radius:50%;
    background:rgba(242,167,27,0.12);
    display:flex;align-items:center;justify-content:center;
    margin:0 auto 22px;
  }
  .feature-card .icon svg{width:28px;height:28px;stroke:var(--gold-500);}
  .feature-card h4{font-size:18px;color:var(--navy-900);margin-bottom:10px;}
  .feature-card p{font-size:14px;color:var(--grey-700);}

  /* ===== TESTIMONIALS ===== */
  #testimonials{
    background:var(--navy-900);
    color:var(--white);
    position:relative;
    overflow:hidden;
  }
  #testimonials::before{
    content:'';
    position:absolute;
    bottom:-180px;right:-140px;
    width:460px;height:460px;
    border-radius:50%;
    background:radial-gradient(circle, rgba(242,167,27,0.12) 0%, rgba(242,167,27,0) 70%);
  }
  #testimonials .section-head h2{color:var(--white);}
  #testimonials .section-head p{color:rgba(255,255,255,0.65);}
  .testi-grid{
    position:relative;
    z-index:2;
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:28px;
  }
  @media(max-width:800px){.testi-grid{grid-template-columns:1fr;}}
  .testi-card{
    background:rgba(255,255,255,0.05);
    border:1px solid rgba(255,255,255,0.09);
    border-radius:var(--radius);
    padding:30px;
  }
  .testi-stars{
    color:var(--gold-500);
    font-size:14px;
    letter-spacing:2px;
    margin-bottom:16px;
  }
  .testi-card p.quote{
    font-size:14.5px;
    color:rgba(255,255,255,0.85);
    margin-bottom:22px;
  }
  .testi-person{
    display:flex;
    align-items:center;
    gap:14px;
  }
  .testi-avatar{
    width:44px;height:44px;
    border-radius:50%;
    background:var(--gold-500);
    color:var(--navy-900);
    display:flex;align-items:center;justify-content:center;
    font-weight:700;
    font-family:'Poppins',sans-serif;
    font-size:14px;
    min-width:44px;
  }
  .testi-person h5{font-size:14.5px;color:var(--white);}
  .testi-person span{font-size:12.5px;color:rgba(255,255,255,0.55);}

  /* ===== NEWSLETTER / MAIL BLOCK ===== */
  .newsletter{
    background:var(--gold-500);
    padding:56px 0;
  }
  .newsletter .acos-container{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:28px;
    flex-wrap:wrap;
  }
  .newsletter h3{
    font-size:24px;
    color:var(--navy-900);
    max-width:420px;
  }
  .newsletter form{
    display:flex;
    gap:12px;
    flex-wrap:wrap;
    flex:1;
    max-width:460px;
  }
  .newsletter input[type="email"]{
    flex:1;
    min-width:200px;
    padding:15px 20px;
    border-radius:50px;
    border:2px solid transparent;
    font-family:'Inter',sans-serif;
    font-size:14px;
    outline:none;
  }
  .newsletter input[type="email"]:focus{border-color:var(--navy-900);}
  .newsletter button{
    padding:15px 28px;
    border-radius:50px;
    border:none;
    background:var(--navy-900);
    color:var(--white);
    font-weight:600;
    font-size:14px;
    text-transform:uppercase;
    letter-spacing:0.03em;
    cursor:pointer;
    transition:background .2s ease;
  }
  .newsletter button:hover{background:var(--navy-700);}
  .newsletter-note{
    width:100%;
    font-size:12px;
    color:rgba(16,26,51,0.6);
    margin-top:8px;
  }

  
  /* ===== WHATSAPP FLOATING BUTTON ===== */
  .wa-float{
    position:fixed;
    bottom:24px;
    left:24px;
    width:60px;height:60px;
    background:#25D366;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    box-shadow:0 10px 30px rgba(0,0,0,0.3);
    z-index:1200;
    transition:transform .2s ease;
  }
  .wa-float:hover{transform:scale(1.08);}
  .wa-float svg{width:30px;height:30px;fill:#ffffff;}
  @media(max-width:600px){
    .wa-float{width:52px;height:52px;bottom:18px;left:18px;}
    .wa-float svg{width:26px;height:26px;}
  }

  /* ===== COOKIE / GDPR BANNER ===== */
  .cookie-banner{
    position:fixed;
    left:0;right:0;bottom:0;
    background:var(--navy-900);
    color:rgba(255,255,255,0.85);
    padding:20px 24px;
    z-index:1300;
    display:none;
    box-shadow:0 -10px 30px rgba(0,0,0,0.25);
  }
  .cookie-banner.show{
    display:flex;
  }
  .cookie-banner-inner{
    max-width:1200px;
    margin:0 auto;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:24px;
    flex-wrap:wrap;
  }
  .cookie-banner p{
    font-size:13.5px;
    max-width:640px;
    color:rgba(255,255,255,0.75);
  }
  .cookie-banner a{
    color:var(--gold-500);
    text-decoration:underline;
  }
  .cookie-banner-actions{
    display:flex;
    gap:12px;
    flex-wrap:wrap;
  }
  .cookie-btn{
    padding:11px 22px;
    border-radius:50px;
    font-size:13px;
    font-weight:600;
    text-transform:uppercase;
    letter-spacing:0.03em;
    cursor:pointer;
    border:2px solid transparent;
  }
  .cookie-btn-accept{
    background:var(--gold-500);
    color:#000000;
    border:none;
  }
  .cookie-btn-accept:hover{background:var(--gold-400);}
  .cookie-btn-decline{
    background:transparent;
    border-color:rgba(255,255,255,0.3);
    color:rgba(255,255,255,0.85);
  }
  .cookie-btn-decline:hover{border-color:rgba(255,255,255,0.6);}

  /* ===== FOOTER LEGAL LINKS ===== */
  .footer-links{
    display:flex;
    gap:20px;
    flex-wrap:wrap;
  }
  .footer-links a{
    color:rgba(255,255,255,0.6);
    transition:color .2s ease;
  }
  .footer-links a:hover{color:var(--gold-500);}

  /* ===== LEGAL / PRIVACY PAGE CONTENT ===== */
  .legal-page{
    padding:170px 0 110px;
    background:var(--white);
  }
  .legal-page .acos-container{max-width:820px;}
  .legal-page h1{
    font-size:clamp(28px,4vw,42px);
    color:var(--navy-900);
    margin-bottom:28px;
  }
  .legal-content h2{
    font-family:'Poppins',sans-serif;
    font-size:22px;
    color:var(--navy-900);
    margin:36px 0 14px;
  }
  .legal-content p, .legal-content li{
    font-size:15px;
    color:var(--grey-700);
    margin-bottom:14px;
  }
  .legal-content ul{
    list-style:disc;
    padding-left:22px;
    margin-bottom:14px;
  }
  .legal-content a{
    color:var(--gold-500);
    text-decoration:underline;
  }
  .legal-content strong{color:var(--navy-900);}

  /* fade-in on scroll */
  .reveal{
    opacity:0;
    transform:translateY(24px);
    transition:opacity .7s ease, transform .7s ease;
  }
  .reveal.visible{
    opacity:1;
    transform:translateY(0);
  }
