/* === GLOBAL RESET === */
*,*::before,*::after{box-sizing:border-box}
html{-webkit-text-size-adjust:100%;line-height:1.5;scroll-behavior:smooth}
body {
  margin: 0;
  font-family: 'Noto Sans JP', 'Inter', system-ui, -apple-system, sans-serif;
  color: #0f172a;
  background: #ffffff;
  -webkit-font-smoothing: antialiased;
}

img{max-width:100%;height:auto;display:block}
a{text-decoration:none;color:inherit}

/* container */
.container{
  width:100%;
  max-width: 1200px;
  margin-left:auto;
  margin-right:auto;
  padding-left: 20px;
  padding-right: 20px;
}

/* ===== HEADER ===== */
.site-header{
  position:absolute;
  top:0;left:0;right:0;
  z-index:100;
  padding:18px 0;
}
.site-header .container{display:flex;align-items:center;gap:32px}
.site-header .logo{display:flex;align-items:center;text-decoration:none;flex-shrink:0}
.main-nav{margin-left:auto}
.main-nav ul{list-style:none;margin:0;padding:0;display:flex;gap:8px}
.main-nav a{
  color:#fff;font-size:14px;font-weight:500;
  padding:8px 14px;border-radius:8px;
  transition:background .2s;
}
.main-nav a:hover{background:rgba(255,255,255,.15)}
.phone-top{
  color:#fff;font-weight:600;font-size:14px;
  white-space:nowrap;
  display:flex;align-items:center;gap:6px;
}
.phone-top i{font-size:13px}
.nav-toggle{display:none;background:none;border:none;color:#fff;font-size:22px;cursor:pointer;padding:4px}

/* HERO */
.hero {
    background: #16a34a;
    color: #ffffff;
    padding: 100px 0 120px;
    position: relative;
    overflow: hidden;
}
.hero::before{
  content:'';
  position:absolute;top:0;left:0;right:0;bottom:0;
  background:url('../visuals/hero-main.webp') center/cover no-repeat;
  opacity:.12;
  pointer-events:none;
}
.hero-grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:48px;
  align-items:center;
  position:relative;
}
.hero h1{
  font-size: 54px;
  line-height: 1.1;
  font-weight: 800;
  letter-spacing: -0.5px;
  margin: 0 0 20px;
}
.hero p {font-size: 17px; line-height: 1.7; max-width: 460px; margin: 0 0 28px;opacity:.92}
.hero-btns{display:flex;gap:12px;flex-wrap:wrap}
.hero-img{
  border-radius: 16px;
  overflow:hidden;
  box-shadow: 0 16px 48px rgba(0,0,0,.2);
  aspect-ratio:4/3;
  background:#0b6e2e;
}
.hero-img img{width:100%;height:100%;object-fit:cover}

/* floating contact card */
.contact-card{
  background:#fff;
  border-radius: 16px;
  padding: 28px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.13);
  max-width: 380px;
  position:absolute;
  right:0;bottom:-72px;
  z-index:10;
}
.contact-card h3{margin:0 0 4px;font-size:19px;font-weight:700;color:#0f172a}
.contact-card .lead{color:#15a34a;font-weight:600;margin:0 0 14px;font-size:14px}
.contact-card input[type="text"],
.contact-card input[type="tel"]{
  width:100%;
  padding:11px 14px;
  border-radius:10px;
  border:1px solid #e5e7eb;
  font-size:14px;
  margin-bottom:10px;
  background:#f9fafb;
  font-family:inherit;
  outline:none;
  transition:border-color .2s;
}
.contact-card input:focus{border-color:#16a34a}

/* buttons */
.btn{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding: 14px 24px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  text-decoration:none;
  transition: all .2s ease;
  cursor:pointer;
  border: 0;
  font-family:inherit;
}
.btn-primary{background:#0f172a;color:#fff}
.btn-primary:hover{background:#1e293b}
.btn-green{background:#16a34a;color:#fff}
.btn-green:hover{background:#15803d}
.btn-ghost{background:transparent;color:#fff;border:2px solid rgba(255,255,255,.45)}
.btn-ghost:hover{background:rgba(255,255,255,.1)}
.btn-white{background:#ffffff;color:#0f172a}
.btn-white:hover{background:#f1f5f9}

/* ===== SERVICE PILLS ===== */
.services-section{padding:0 0 0;position:relative;z-index:2;margin-top:100px}
.services-row{
  display:grid;grid-template-columns:repeat(4,1fr);
  gap:16px;
  margin-top:-40px;
  position:relative;z-index:2;
}
.service-pill{
  background:#ffffff;
  border-radius: 14px;
  padding: 22px 18px;
  box-shadow: 0 6px 24px rgba(15,23,42,.08);
  display:flex;
  align-items:center;
  gap:14px;
  text-decoration:none;
  color:#0f172a;
  transition:transform .2s,box-shadow .2s;
}
.service-pill:hover{transform:translateY(-2px);box-shadow: 0 10px 32px rgba(15,23,42,.12)}
.service-pill .icon{
  width:44px;height:44px;border-radius:10px;
  background:#dcfce7;color:#16A34A;
  display:flex;align-items:center;justify-content:center;
  font-size:18px;flex-shrink:0;
}
.service-pill .label{font-weight:600;font-size:15px;color:#0f172a;line-height:1.3}
.service-pill .sub{font-size:12px;color:#64748b;margin-top:2px}

/* about band */
.about{
    background:#052e16;
    color:#ffffff;
    padding: 100px 0 80px;
}
.about-grid{display:grid;grid-template-columns:1fr 1fr;gap:60px;align-items:center}
.about-img{border-radius:14px;overflow:hidden;aspect-ratio:4/3;background:#0b3b1e}
.about-img img{width:100%;height:100%;object-fit:cover}
.about h2{font-size:32px;font-weight:800;margin:0 0 16px;color:#16a34a;line-height:1.2}
.about p{color:#cbd5e1;line-height:1.75;font-size:15px;margin:0 0 14px}

.stats{display:flex;gap:48px;margin-top:36px;flex-wrap:wrap}
.stat .num{font-size:38px;font-weight:800;color:#16a34a;line-height:1}
.stat .lbl{font-size:13px;color:#94a3b8;margin-top:6px;line-height:1.4}

/* feature cards */
.features{padding:80px 0;background:#f9fafb}
.features .section-head{text-align:center;margin-bottom:40px}
.features .section-head h2{font-size:32px;font-weight:800;margin:0 0 10px}
.features .section-head p{color:#64748b;font-size:16px;margin:0}
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.feature-card{
  background:#fff;
  padding: 28px;
  border-radius: 14px;
  border: 1px solid #e5e7eb;
  display:flex;
  gap:16px;
  transition:box-shadow .2s;
}
.feature-card:hover{box-shadow:0 8px 28px rgba(15,23,42,.08)}
.feature-card .ic{
  flex:0 0 44px;
  width:44px;height:44px;
  background:#dcfce7;
  border-radius:10px;
  display:flex;align-items:center;justify-content:center;
  color:#16a34a;font-size:18px;
}
.feature-card h3{margin:0 0 6px;font-size:16px;font-weight:700}
.feature-card p{margin:0;color:#64748b;font-size:14px;line-height:1.55}

/* why us */
.why{padding:80px 0}
.why .row{display:grid;grid-template-columns: 1fr 1fr;gap: 64px;align-items:center}
.why h2{font-size:30px;margin:0 0 8px;font-weight:800}
.why .sub{color:#64748b;margin:0 0 28px;font-size:15px}
.check-list{list-style:none;padding:0;margin:0}
.check-list li{display:flex;gap:14px;margin-bottom:20px}
.check-list li .check{
  flex:0 0 26px;width:26px;height:26px;border-radius:50%;
  background:#dcfce7;color:#15a34a;
  display:flex;align-items:center;justify-content:center;font-size:12px;
  margin-top:2px;
}
.check-list li strong{display:block;font-weight:700;font-size:15px;margin-bottom:3px}
.check-list li span{color:#6b7280;font-size:14px;line-height:1.5}
.why-img{border-radius:16px;overflow:hidden;aspect-ratio:4/3;background:#f1f5f9}
.why-img img{width:100%;height:100%;object-fit:cover}

/* ===== PRICING ===== */
.pricing{padding:80px 0;background:#f9fafb}
.pricing .section-head{text-align:center;margin-bottom:48px}
.pricing .section-head h2{font-size:32px;font-weight:800;margin:0 0 10px}
.pricing .section-head p{color:#64748b;font-size:16px;margin:0}
.pricing-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:24px}
.pricing-card{
  background:#fff;
  border:2px solid #e5e7eb;
  border-radius:16px;
  padding:32px 28px;
  display:flex;flex-direction:column;
  transition:border-color .2s,box-shadow .2s;
}
.pricing-card:hover{border-color:#16a34a;box-shadow:0 8px 32px rgba(22,163,74,.1)}
.pricing-card.featured{
  border-color:#16a34a;
  background:#f0fdf4;
  position:relative;
}
.pricing-badge{
  position:absolute;top:-14px;left:50%;transform:translateX(-50%);
  background:#16a34a;color:#fff;
  font-size:12px;font-weight:700;
  padding:4px 16px;border-radius:999px;
  white-space:nowrap;
}
.pricing-card .plan-name{font-size:14px;font-weight:700;color:#64748b;text-transform:uppercase;letter-spacing:.5px;margin:0 0 8px}
.pricing-card .price{font-size:40px;font-weight:800;color:#0f172a;line-height:1;margin:0 0 4px}
.pricing-card .price span{font-size:16px;font-weight:500;color:#64748b}
.pricing-card .price-note{font-size:13px;color:#94a3b8;margin:0 0 24px}
.pricing-card hr{border:none;border-top:1px solid #e5e7eb;margin:0 0 24px}
.pricing-card ul{list-style:none;padding:0;margin:0 0 32px;flex:1}
.pricing-card ul li{
  display:flex;align-items:flex-start;gap:10px;
  font-size:14px;color:#374151;
  padding:7px 0;
  border-bottom:1px solid #f1f5f9;
}
.pricing-card ul li:last-child{border-bottom:none}
.pricing-card ul li i{color:#16a34a;font-size:13px;margin-top:2px;flex-shrink:0}
.pricing-card .btn{width:100%;justify-content:center;margin-top:auto}

/* testimonials */
.testimonials{padding:80px 0;background:#fff}
.testimonials .section-head{text-align:center;margin-bottom:44px}
.testimonials .section-head h2{font-size:30px;font-weight:800;margin:0 0 10px}
.testimonials .section-head p{color:#64748b;font-size:15px;margin:0}
.reviews-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:20px}
.review-card{
  background:#f9fafb;
  border:1px solid #e5e7eb;
  border-radius:14px;
  padding:24px;
}
.review-stars{color:#f59e0b;font-size:14px;margin-bottom:12px}
.review-text{font-size:14px;color:#374151;line-height:1.65;margin:0 0 16px}
.review-author{display:flex;align-items:center;gap:10px}
.review-avatar{
  width:38px;height:38px;border-radius:50%;
  background:#dcfce7;color:#16a34a;
  display:flex;align-items:center;justify-content:center;
  font-weight:700;font-size:14px;flex-shrink:0;
}
.review-name{font-weight:700;font-size:14px;margin:0 0 2px}
.review-role{font-size:12px;color:#94a3b8}

/* CTA band */
.cta-band{background:#16a34a;color:#fff;padding:72px 0;text-align:center}
.cta-band h2{font-size:34px;font-weight:800;margin:0 0 12px}
.cta-band p{margin:0 0 28px;font-size:17px;opacity:.92}
.cta-band .btn-row{display:flex;gap:12px;justify-content:center;flex-wrap:wrap}

/* contact form bottom */
.contact-bottom{padding:80px 0}
.contact-bottom .row{display:grid;grid-template-columns: 1fr 1fr;gap:64px;align-items:start}
.contact-bottom h2{font-size:28px;font-weight:800;margin:0 0 12px}
.contact-bottom .sub{color:#64748b;font-size:15px;margin:0 0 24px;line-height:1.6}
.contact-info-list{list-style:none;padding:0;margin:0 0 28px}
.contact-info-list li{display:flex;align-items:flex-start;gap:12px;margin-bottom:14px;font-size:14px;color:#374151}
.contact-info-list li i{color:#16a34a;font-size:16px;margin-top:1px;width:18px;flex-shrink:0}
.form-grid{display:grid;grid-template-columns:1fr 1fr;gap:12px}
.form-grid input,
.form-grid select,
.form-grid textarea{
  width:100%;padding:12px 14px;border:1px solid #e5e7eb;
  border-radius:10px;background:#f9fafb;font-size:14px;
  font-family:inherit;outline:none;
  transition:border-color .2s;
}
.form-grid input:focus,
.form-grid select:focus,
.form-grid textarea:focus{border-color:#16a34a;background:#fff}
.form-grid .full{grid-column: 1 / -1}
.form-grid textarea{min-height:120px;resize:vertical}
.form-grid .btn{grid-column: 1 / -1;justify-content:center}
.form-note{font-size:12px;color:#94a3b8;grid-column:1/-1;text-align:center}

/* footer */
.site-footer{background:#022c22;color:#cbd5e1;padding:64px 0 24px}
.site-footer .row{display:grid;grid-template-columns: 2fr 1fr 1fr 1fr;gap:40px}
.site-footer h4{color:#fff;font-size:13px;text-transform:uppercase;letter-spacing:.5px;margin:0 0 16px}
.site-footer a{color:#cbd5e1;text-decoration:none;display:block;padding:4px 0;font-size:14px}
.site-footer a:hover{color:#16a34a}
.brand-col p{font-size:14px;color:#94a3b8;line-height:1.65;margin:14px 0 20px}
.social-links{display:flex;gap:10px;margin-top:4px}
.social-links a{
  width:36px;height:36px;border-radius:8px;
  background:rgba(255,255,255,.06);
  display:flex;align-items:center;justify-content:center;
  font-size:15px;color:#94a3b8;
  padding:0;
  transition:background .2s,color .2s;
}
.social-links a:hover{background:#16a34a;color:#fff}
.footer-bottom{margin-top:40px;padding-top:20px;border-top:1px solid #0b3b2e;display:flex;justify-content:space-between;font-size:12px;flex-wrap:wrap;gap:8px}
.footer-bottom a{color:#94a3b8;text-decoration:none}
.footer-bottom a:hover{color:#16a34a}

/* ===== COOKIE BANNER ===== */
.cookie-banner{
  position:fixed;bottom:0;left:0;right:0;
  background:#0f172a;color:#cbd5e1;
  padding:18px 24px;
  z-index:9999;
  display:flex;align-items:center;justify-content:space-between;
  gap:20px;flex-wrap:wrap;
  box-shadow:0 -4px 24px rgba(0,0,0,.2);
  transform:translateY(100%);
  transition:transform .35s ease;
}
.cookie-banner.show{transform:translateY(0)}
.cookie-banner p{margin:0;font-size:13px;line-height:1.6;max-width:720px}
.cookie-banner a{color:#16a34a;text-decoration:underline}
.cookie-actions{display:flex;gap:10px;flex-shrink:0}
.btn-cookie-ok{background:#16a34a;color:#fff;border:none;padding:10px 20px;border-radius:999px;font-size:14px;font-weight:600;cursor:pointer;font-family:inherit}
.btn-cookie-ok:hover{background:#15803d}
.btn-cookie-decline{background:transparent;color:#94a3b8;border:1px solid #334155;padding:10px 20px;border-radius:999px;font-size:14px;cursor:pointer;font-family:inherit}
.btn-cookie-decline:hover{border-color:#64748b;color:#cbd5e1}

/* ===== INNER PAGE HERO ===== */
.page-hero{
  background:#16a34a;color:#fff;
  padding:120px 0 60px;
  text-align:center;
}
.page-hero h1{font-size:40px;font-weight:800;margin:0 0 12px;line-height:1.15}
.page-hero p{font-size:16px;opacity:.9;margin:0;max-width:560px;margin-left:auto;margin-right:auto}
.breadcrumb{
  display:flex;align-items:center;gap:8px;justify-content:center;
  font-size:13px;margin-bottom:16px;opacity:.8;
}
.breadcrumb a{color:#fff;text-decoration:none}
.breadcrumb i{font-size:10px}

/* inner page content */
.page-content{padding:72px 0}
.page-content h2{font-size:24px;font-weight:800;margin:32px 0 12px;color:#0f172a}
.page-content h2:first-child{margin-top:0}
.page-content p{color:#374151;line-height:1.75;font-size:15px;margin:0 0 16px}
.page-content ul{padding-left:20px;color:#374151;font-size:15px;line-height:1.75;margin:0 0 16px}
.page-content ul li{margin-bottom:8px}

/* careers page specifics */
.job-card{
  background:#fff;border:1px solid #e5e7eb;border-radius:14px;
  padding:24px 28px;margin-bottom:16px;
  display:flex;align-items:center;justify-content:space-between;gap:20px;
}
.job-card h3{margin:0 0 4px;font-size:17px;font-weight:700}
.job-card .meta{font-size:13px;color:#64748b;display:flex;gap:14px;flex-wrap:wrap;margin-top:6px}
.job-card .meta span{display:flex;align-items:center;gap:5px}
.job-tag{
  display:inline-block;padding:4px 12px;border-radius:999px;
  background:#dcfce7;color:#15803d;font-size:12px;font-weight:600;
  margin-right:6px;
}

/* reviews page specifics */
.reviews-big-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:20px}
.review-card-big{
  background:#fff;border:1px solid #e5e7eb;border-radius:14px;
  padding:28px;
}

/* section-page content layout */
.section-inner{max-width:820px;margin:0 auto}

/* utility */
.text-center{text-align:center}
.mt-0{margin-top:0 !important}
.mb-0{margin-bottom:0 !important}
.hidden-mobile{}
.d-flex{display:flex}
.align-center{align-items:center}
.section-tag{
  display:inline-block;
  background:#dcfce7;color:#15803d;
  font-size:13px;font-weight:700;
  padding:5px 14px;border-radius:999px;
  margin-bottom:14px;
}

/* TODO: mobile review */
/* old-styles - delete later */
/*
.btn-old{background:#0a0a0a;color:#fff;padding:10px 20px;border-radius:4px}
*/

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px){
  .hero h1{font-size:42px}
  .services-row{grid-template-columns:repeat(2,1fr)}
  .about-grid{grid-template-columns:1fr;gap:40px}
  .pricing-grid{grid-template-columns:1fr}
  .why .row{grid-template-columns:1fr;gap:32px}
  .contact-bottom .row{grid-template-columns:1fr;gap:40px}
  .site-footer .row{grid-template-columns:1fr 1fr;gap:32px}
  .feature-grid{grid-template-columns:repeat(2,1fr)}
  .reviews-grid{grid-template-columns:1fr 1fr}
  .reviews-big-grid{grid-template-columns:1fr}
  .pricing-grid{grid-template-columns:1fr 1fr}
}

@media (max-width: 768px){
  .hero{padding:80px 0 100px}
  .hero h1{font-size:32px;letter-spacing:0}
  .hero-grid{grid-template-columns:1fr}
  .hero-btns{flex-direction:column;align-items:flex-start}
  .contact-card{position:static;margin-top:28px;max-width:100%}
  .services-section{margin-top:32px}
  .services-row{grid-template-columns:1fr 1fr;margin-top:0}
  .feature-grid{grid-template-columns:1fr}
  .reviews-grid{grid-template-columns:1fr}
  .stats{gap:24px;flex-wrap:wrap}
  .form-grid{grid-template-columns:1fr}
  .pricing-grid{grid-template-columns:1fr}
  .why .row{grid-template-columns:1fr}
  .main-nav{display:none}
  .nav-toggle{display:block}
  .main-nav.open{display:block;position:absolute;top:100%;left:0;right:0;background:#052e16;padding:12px 20px}
  .main-nav.open ul{flex-direction:column;gap:4px}
  .main-nav.open a{color:#cbd5e1;display:block;padding:10px 14px}
  .page-hero h1{font-size:28px}
  .pricing-grid{grid-template-columns:1fr}
  .reviews-big-grid{grid-template-columns:1fr}
  .job-card{flex-direction:column;align-items:flex-start}
}

@media (max-width: 480px){
  .container{padding-left:16px;padding-right:16px}
  .services-row{grid-template-columns:1fr}
  .site-footer .row{grid-template-columns:1fr}
  .hero h1{font-size:28px}
  .footer-bottom{flex-direction:column;text-align:center}
}
