@import url('https://fonts.googleapis.com/css2?family=Nunito+Sans:wght@400;600;700;800&display=swap');

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

:root{
  --navy:#1A2B4A;
  --orange:#F26522;
  --orange-hover:#d9551a;
  --gray-bg:#F4F6F8;
  --white:#FFFFFF;
  --text:#3A4553;
  --text-light:#6B7A8D;
  --radius:12px;
  --max-w:1140px;
}

html{scroll-behavior:smooth}
body{font-family:'Nunito Sans',sans-serif;color:var(--text);line-height:1.6;background:var(--white)}
img{max-width:100%;display:block}
a{color:var(--orange);text-decoration:none}
a:hover{color:var(--orange-hover)}
h1,h2,h3,h4{color:var(--navy);line-height:1.25}
h1{font-size:2.5rem;font-weight:800}
h2{font-size:2rem;font-weight:700}
h3{font-size:1.25rem;font-weight:700}
p{margin-bottom:1rem}
ul{list-style:none}

/* Utility */
.container{max-width:var(--max-w);margin:0 auto;padding:0 24px}
.btn{display:inline-block;padding:12px 28px;border-radius:var(--radius);font-weight:700;font-size:0.95rem;cursor:pointer;transition:background .2s,transform .15s;border:none;font-family:inherit}
.btn-orange{background:var(--orange);color:var(--white)}
.btn-orange:hover{background:var(--orange-hover);color:var(--white);transform:translateY(-1px)}
.btn-outline{background:transparent;color:var(--orange);border:2px solid var(--orange)}
.btn-outline:hover{background:var(--orange);color:var(--white)}
.btn-white{background:var(--white);color:var(--navy)}
.btn-white:hover{background:#e9ecef;color:var(--navy)}
.section-label{font-size:0.8rem;text-transform:uppercase;letter-spacing:2px;color:var(--orange);font-weight:700;margin-bottom:8px}
.section-title{margin-bottom:16px}
.section-sub{color:var(--text-light);max-width:620px;margin:0 auto 40px}
.text-center{text-align:center}

/* ─── NAV ─── */
.site-nav{position:sticky;top:0;background:var(--white);border-bottom:1px solid #e5e9ed;z-index:100;padding:0 24px}
.site-nav .container{display:flex;align-items:center;justify-content:space-between;height:64px}
.logo{font-size:1.35rem;font-weight:800;color:var(--navy);text-decoration:none}
.logo span{color:var(--orange)}
.nav-links{display:flex;align-items:center;gap:28px;list-style:none}
.nav-links a{color:var(--navy);font-weight:600;font-size:0.92rem;text-decoration:none}
.nav-links a:hover{color:var(--orange)}
.nav-cta{background:var(--orange);color:var(--white) !important;padding:9px 22px;border-radius:var(--radius)}
.nav-cta:hover{background:var(--orange-hover)}
.nav-toggle{display:none;background:none;border:none;cursor:pointer;padding:4px}
.nav-toggle svg{width:26px;height:26px;stroke:var(--navy)}

/* ─── HERO ─── */
.hero{position:relative;background:var(--navy) url('../img/hero.jpg') center/cover no-repeat;padding:100px 0 110px;color:var(--white);text-align:center}
.hero::before{content:'';position:absolute;inset:0;background:rgba(26,43,74,.72)}
.hero .container{position:relative;z-index:1}
.hero h1{color:var(--white);font-size:2.8rem;margin-bottom:18px}
.hero p{color:rgba(255,255,255,.88);font-size:1.15rem;max-width:600px;margin:0 auto 32px}
.hero .btn{margin:0 8px}

/* ─── HERO-SUB ─── */
.hero-sub{background:var(--navy);padding:64px 0 68px;color:var(--white);text-align:center}
.hero-sub h1{color:var(--white);margin-bottom:14px}
.hero-sub p{color:rgba(255,255,255,.82);max-width:600px;margin:0 auto}

/* ─── FEATURES GRID ─── */
.features{padding:80px 0;background:var(--gray-bg)}
.features-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:28px;margin-top:8px}
.feature-card{background:var(--white);border-radius:var(--radius);padding:36px 28px;text-align:center;transition:box-shadow .2s}
.feature-card:hover{box-shadow:0 8px 28px rgba(26,43,74,.09)}
.feature-card .icon{width:52px;height:52px;margin:0 auto 18px;background:var(--gray-bg);border-radius:50%;display:flex;align-items:center;justify-content:center}
.feature-card .icon svg{width:24px;height:24px;stroke:var(--orange);fill:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round}
.feature-card h3{margin-bottom:10px}
.feature-card p{color:var(--text-light);font-size:0.92rem;margin-bottom:0}

/* ─── STATS BAND ─── */
.stats-band{background:var(--navy);padding:52px 0;color:var(--white)}
.stats-band .container{display:flex;justify-content:space-around;text-align:center;flex-wrap:wrap;gap:24px}
.stat h3{font-size:2.4rem;color:var(--orange);font-weight:800}
.stat p{color:rgba(255,255,255,.75);font-size:0.9rem;margin-bottom:0}

/* ─── TESTIMONIALS ─── */
.testimonials{padding:80px 0;background:var(--white)}
.testimonial-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:28px}
.testimonial-card{background:var(--gray-bg);border-radius:var(--radius);padding:32px 28px}
.testimonial-card blockquote{font-style:italic;margin-bottom:16px;color:var(--text);font-size:0.95rem;line-height:1.7}
.testimonial-card .author{font-weight:700;color:var(--navy);font-size:0.88rem}
.testimonial-card .role{color:var(--text-light);font-size:0.82rem}

/* ─── IMAGE BAND ─── */
.img-band{width:100%;height:340px;overflow:hidden}
.img-band img{width:100%;height:100%;object-fit:cover}

/* ─── CTA BANNER ─── */
.cta-banner{background:var(--orange);padding:64px 0;text-align:center;color:var(--white)}
.cta-banner h2{color:var(--white);margin-bottom:14px}
.cta-banner p{color:rgba(255,255,255,.9);margin-bottom:28px;max-width:540px;margin-left:auto;margin-right:auto}

/* ─── PRICING GRID ─── */
.pricing{padding:80px 0;background:var(--gray-bg)}
.pricing-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:28px;margin-top:8px}
.pricing-card{background:var(--white);border-radius:var(--radius);padding:40px 32px;text-align:center;position:relative;transition:box-shadow .2s}
.pricing-card:hover{box-shadow:0 8px 28px rgba(26,43,74,.09)}
.pricing-card.featured{border:2px solid var(--orange)}
.pricing-card .badge{position:absolute;top:-13px;left:50%;transform:translateX(-50%);background:var(--orange);color:var(--white);padding:4px 18px;border-radius:20px;font-size:0.78rem;font-weight:700}
.pricing-card h3{margin-bottom:8px}
.pricing-card .price{font-size:2.4rem;font-weight:800;color:var(--navy);margin-bottom:4px}
.pricing-card .price-note{color:var(--text-light);font-size:0.85rem;margin-bottom:24px}
.pricing-card ul{text-align:left;margin-bottom:28px}
.pricing-card li{padding:8px 0;border-bottom:1px solid #eef0f3;font-size:0.92rem;color:var(--text);padding-left:24px;position:relative}
.pricing-card li::before{content:'';position:absolute;left:0;top:13px;width:14px;height:14px;border-radius:50%;background:var(--orange);opacity:.18}
.pricing-card .btn{width:100%}

/* ─── FAQ ─── */
.faq{padding:80px 0;background:var(--white)}
.faq-list{max-width:720px;margin:0 auto}
.faq-item{border-bottom:1px solid #e5e9ed;padding:20px 0}
.faq-item summary{font-weight:700;color:var(--navy);cursor:pointer;font-size:1rem;list-style:none;display:flex;justify-content:space-between;align-items:center}
.faq-item summary::-webkit-details-marker{display:none}
.faq-item summary::after{content:'+';font-size:1.3rem;color:var(--orange);font-weight:700;transition:transform .2s}
.faq-item[open] summary::after{content:'\2212'}
.faq-item p{margin-top:12px;color:var(--text-light);font-size:0.93rem}

/* ─── ABOUT / TEAM ─── */
.about-story{padding:80px 0}
.about-story .container{display:grid;grid-template-columns:1fr 1fr;gap:48px;align-items:center}
.about-story h2{margin-bottom:16px}
.about-story p{color:var(--text-light)}
.team{padding:80px 0;background:var(--gray-bg)}
.team-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:28px}
.team-card{background:var(--white);border-radius:var(--radius);padding:36px 24px;text-align:center}
.team-card .avatar{width:72px;height:72px;border-radius:50%;background:var(--navy);margin:0 auto 16px;display:flex;align-items:center;justify-content:center;color:var(--white);font-size:1.4rem;font-weight:800}
.team-card h3{margin-bottom:4px;font-size:1.05rem}
.team-card .title{color:var(--orange);font-size:0.82rem;font-weight:700;margin-bottom:10px}
.team-card p{color:var(--text-light);font-size:0.88rem;margin-bottom:0}

/* ─── CONTACT ─── */
.contact{padding:80px 0;background:var(--gray-bg)}
.contact-grid{display:grid;grid-template-columns:1fr 1fr;gap:48px;align-items:start}
.contact-info h2{margin-bottom:16px}
.contact-info p{color:var(--text-light)}
.contact-info .detail{margin-top:24px}
.contact-info .detail h4{font-size:0.9rem;margin-bottom:4px}
.contact-info .detail p{color:var(--text);font-size:0.92rem;margin-bottom:16px}
.contact-form{background:var(--white);border-radius:var(--radius);padding:40px 36px}
.contact-form label{display:block;font-weight:700;font-size:0.88rem;color:var(--navy);margin-bottom:6px}
.contact-form input,.contact-form select,.contact-form textarea{width:100%;padding:11px 14px;border:1px solid #d2d8e0;border-radius:8px;font-family:inherit;font-size:0.92rem;margin-bottom:18px;transition:border .2s}
.contact-form input:focus,.contact-form select:focus,.contact-form textarea:focus{outline:none;border-color:var(--orange)}
.contact-form textarea{resize:vertical;min-height:100px}
.contact-form .btn{width:100%}

/* ─── BLOG ─── */
.blog-hero{background:var(--navy);padding:56px 0 60px;text-align:center;color:var(--white)}
.blog-hero h1{color:var(--white);margin-bottom:10px}
.blog-hero p{color:rgba(255,255,255,.78)}
.blog-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:28px;padding:64px 0}
.blog-card{background:var(--white);border-radius:var(--radius);overflow:hidden;transition:box-shadow .2s;border:1px solid #e5e9ed}
.blog-card:hover{box-shadow:0 8px 28px rgba(26,43,74,.09)}
.blog-card-img{height:200px;overflow:hidden}
.blog-card-img img{width:100%;height:100%;object-fit:cover}
.blog-card-body{padding:28px 24px}
.blog-card-body .meta{font-size:0.8rem;color:var(--text-light);margin-bottom:10px}
.blog-card-body h3{margin-bottom:10px}
.blog-card-body h3 a{color:var(--navy);text-decoration:none}
.blog-card-body h3 a:hover{color:var(--orange)}
.blog-card-body p{color:var(--text-light);font-size:0.9rem;margin-bottom:14px}
.blog-card-body .read-more{font-weight:700;font-size:0.88rem;color:var(--orange)}

/* ─── POST ─── */
.post-hero{background:var(--navy);padding:56px 0 60px;text-align:center;color:var(--white)}
.post-hero h1{color:var(--white);font-size:2.1rem;max-width:740px;margin:0 auto 14px}
.post-hero .meta{color:rgba(255,255,255,.7);font-size:0.88rem}
.post-content{max-width:740px;margin:0 auto;padding:56px 24px 80px}
.post-content h2{margin-top:40px;margin-bottom:16px;font-size:1.5rem}
.post-content h3{margin-top:28px;margin-bottom:12px}
.post-content p{color:var(--text);line-height:1.75;margin-bottom:18px}
.post-content ul,.post-content ol{margin:0 0 18px 24px;color:var(--text);line-height:1.75}
.post-content li{margin-bottom:6px}
.post-content ul{list-style:disc}
.post-content ol{list-style:decimal}
.post-back{display:inline-block;margin-bottom:32px;font-weight:700;font-size:0.9rem}

/* ─── FOOTER ─── */
.site-footer{background:var(--navy);color:rgba(255,255,255,.7);padding:52px 0 36px}
.footer-grid{display:grid;grid-template-columns:2fr 1fr 1fr 1fr;gap:36px}
.footer-grid h4{color:var(--white);font-size:0.88rem;margin-bottom:14px}
.footer-grid p{font-size:0.85rem;margin-bottom:0}
.footer-grid a{color:rgba(255,255,255,.7);text-decoration:none;font-size:0.85rem;display:block;margin-bottom:8px}
.footer-grid a:hover{color:var(--orange)}
.footer-brand{font-size:1.2rem;font-weight:800;color:var(--white);margin-bottom:10px}
.footer-brand span{color:var(--orange)}
.footer-bottom{border-top:1px solid rgba(255,255,255,.1);margin-top:40px;padding-top:20px;display:flex;justify-content:space-between;font-size:0.8rem}
.footer-bottom a{color:rgba(255,255,255,.55)}

/* ─── LEGAL ─── */
.legal{padding:64px 0 80px}
.legal .container{max-width:780px}
.legal h1{font-size:2rem;margin-bottom:8px}
.legal .updated{color:var(--text-light);font-size:0.88rem;margin-bottom:32px}
.legal h2{font-size:1.3rem;margin-top:36px;margin-bottom:12px}
.legal p,.legal li{color:var(--text);line-height:1.75;font-size:0.95rem}
.legal ul{list-style:disc;margin:0 0 18px 24px}
.legal li{margin-bottom:6px}

/* ─── 404 ─── */
.page-404{padding:120px 0;text-align:center}
.page-404 h1{font-size:5rem;color:var(--orange);margin-bottom:8px}
.page-404 h2{margin-bottom:14px}
.page-404 p{color:var(--text-light);margin-bottom:28px}

/* ─── RESPONSIVE ─── */
@media(max-width:960px){
  .features-grid,.pricing-grid,.team-grid,.testimonial-grid{grid-template-columns:repeat(2,1fr)}
  .footer-grid{grid-template-columns:1fr 1fr}
  .about-story .container{grid-template-columns:1fr}
  .contact-grid{grid-template-columns:1fr}
  .blog-grid{grid-template-columns:1fr}
}
@media(max-width:640px){
  .nav-toggle{display:block}
  .nav-links{position:absolute;top:64px;left:0;right:0;background:var(--white);flex-direction:column;padding:20px 24px;gap:16px;border-bottom:1px solid #e5e9ed;display:none}
  .nav-links.open{display:flex}
  .hero h1{font-size:2rem}
  .hero{padding:68px 0 76px}
  h1{font-size:2rem}
  h2{font-size:1.6rem}
  .features-grid,.pricing-grid,.team-grid,.testimonial-grid{grid-template-columns:1fr}
  .stats-band .container{flex-direction:column;gap:20px}
  .footer-grid{grid-template-columns:1fr}
  .footer-bottom{flex-direction:column;gap:8px;text-align:center}
  .hero .btn{display:block;margin:0 auto 12px;max-width:240px}
  .img-band{height:220px}
}
