/* ============================================================
   KENWOOD CAPITAL — Shared Stylesheet
   ============================================================ */

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --green:   #1a8a4a;
  --green-d: #146638;
  --navy:    #0d1e35;
  --navy-m:  #1b3252;
  --gray:    #f4f6f8;
  --gray-m:  #e2e8f0;
  --text:    #1a2433;
  --muted:   #64748b;
  --white:   #ffffff;
  --radius:  8px;
  --shadow:  0 2px 16px rgba(0,0,0,.09);
  --font:    'Inter', 'Helvetica Neue', Arial, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  color: var(--text);
  line-height: 1.6;
  font-size: 16px;
  background: var(--white);
}

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

/* --- Typography --- */
h1 { font-size: clamp(2rem, 5vw, 3.2rem); font-weight: 800; line-height: 1.15; }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.25rem); font-weight: 700; line-height: 1.25; }
h3 { font-size: 1.25rem; font-weight: 700; }
h4 { font-size: 1.05rem; font-weight: 700; }
p  { color: var(--muted); }

/* ============================================================
   HEADER / NAV
   ============================================================ */
header {
  position: sticky; top: 0; z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--gray-m);
  padding: 0 5%;
}

.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  max-width: 1200px; margin: 0 auto;
  height: 70px;
}

.logo {
  font-size: 1.45rem; font-weight: 800;
  color: var(--navy);
  letter-spacing: -.5px;
}
.logo span { color: var(--green); }

.nav-links {
  display: flex; align-items: center; gap: 2rem;
}
.nav-links a {
  font-size: .9rem; font-weight: 600;
  color: var(--text);
  transition: color .2s;
}
.nav-links a:hover { color: var(--green); }

.nav-cta {
  background: var(--green);
  color: var(--white) !important;
  padding: .55rem 1.4rem;
  border-radius: 50px;
  font-size: .9rem; font-weight: 700;
  transition: background .2s;
}
.nav-cta:hover { background: var(--green-d) !important; }

.hamburger { display: none; cursor: pointer; font-size: 1.5rem; color: var(--navy); }

@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: block; }
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-m) 100%);
  color: var(--white);
  padding: 90px 5% 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  max-width: 100%;
}

.hero-content p { color: rgba(255,255,255,.75); font-size: 1.1rem; margin: 1rem 0 2rem; }
.hero-content h1 { color: var(--white); }

.hero-badge {
  display: inline-block;
  background: rgba(26,138,74,.25);
  color: #6ee79e;
  font-size: .8rem; font-weight: 700;
  letter-spacing: 1px; text-transform: uppercase;
  padding: .35rem .9rem;
  border-radius: 50px;
  margin-bottom: 1rem;
}

.hero-card {
  background: var(--white);
  border-radius: 16px;
  padding: 2rem;
  box-shadow: var(--shadow);
}
.hero-card h3 { color: var(--navy); margin-bottom: .25rem; }
.hero-card p  { font-size: .9rem; margin-bottom: 1.5rem; color: var(--muted); }

.hero-form label { display: block; font-size: .85rem; font-weight: 600; color: var(--text); margin-bottom: .4rem; }
.hero-form input[type="text"],
.hero-form input[type="tel"],
.hero-form input[type="email"],
.hero-form select {
  width: 100%; padding: .75rem 1rem;
  border: 1.5px solid var(--gray-m);
  border-radius: var(--radius);
  font-size: .95rem; color: var(--text);
  margin-bottom: 1rem;
  outline: none;
  transition: border-color .2s;
}
.hero-form input:focus,
.hero-form select:focus { border-color: var(--green); }

.btn-primary {
  display: inline-block;
  background: var(--green);
  color: var(--white);
  font-weight: 700; font-size: 1rem;
  padding: .85rem 2rem;
  border-radius: 50px;
  border: none; cursor: pointer;
  transition: background .2s, transform .1s;
  width: 100%; text-align: center;
}
.btn-primary:hover { background: var(--green-d); transform: translateY(-1px); }

.hero-disclaimer { font-size: .78rem; color: var(--muted); text-align: center; margin-top: .75rem; }

.hero-reqs {
  display: flex; flex-wrap: wrap; gap: .5rem .75rem;
  margin-top: 1.5rem;
}
.req-chip {
  background: rgba(255,255,255,.12);
  color: rgba(255,255,255,.85);
  font-size: .8rem; font-weight: 600;
  padding: .3rem .8rem;
  border-radius: 50px;
  border: 1px solid rgba(255,255,255,.2);
}

.trust-logos {
  display: flex; align-items: center; gap: 1.5rem;
  margin-top: 2rem; flex-wrap: wrap;
}
.trust-logos span {
  font-size: .82rem; font-weight: 700;
  color: rgba(255,255,255,.6);
  letter-spacing: .5px; text-transform: uppercase;
}
.trust-item {
  background: rgba(255,255,255,.1);
  padding: .4rem .9rem;
  border-radius: 6px;
  font-size: .82rem; font-weight: 700;
  color: rgba(255,255,255,.85);
}

@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; padding: 60px 5%; }
  .hero-card { max-width: 480px; }
}

/* ============================================================
   SECTION GENERIC
   ============================================================ */
section { padding: 80px 5%; }
.section-inner { max-width: 1200px; margin: 0 auto; }
.section-label {
  display: inline-block;
  font-size: .78rem; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--green);
  margin-bottom: .5rem;
}
.section-title { color: var(--navy); margin-bottom: .75rem; }
.section-sub   { color: var(--muted); font-size: 1.05rem; max-width: 640px; }

/* ============================================================
   STATS BAR
   ============================================================ */
.stats-bar {
  background: var(--navy);
  padding: 0;
}
.stats-grid {
  max-width: 1200px; margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  text-align: center;
}
.stat-item {
  padding: 2rem;
  border-right: 1px solid rgba(255,255,255,.1);
}
.stat-item:last-child { border-right: none; }
.stat-num {
  font-size: 2rem; font-weight: 800;
  color: var(--white);
  display: block;
}
.stat-label {
  font-size: .85rem; color: rgba(255,255,255,.65);
  margin-top: .2rem;
}

@media (max-width: 600px) {
  .stats-grid { grid-template-columns: 1fr; }
  .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,.1); }
}

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}
.step-card {
  background: var(--gray);
  border-radius: 14px;
  padding: 2rem;
  position: relative;
}
.step-num {
  display: inline-block;
  width: 36px; height: 36px;
  background: var(--green);
  color: var(--white);
  border-radius: 50%;
  font-weight: 800; font-size: .9rem;
  line-height: 36px; text-align: center;
  margin-bottom: 1rem;
}
.step-card h4 { color: var(--navy); margin-bottom: .5rem; }

@media (max-width: 768px) {
  .steps-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   SOLUTIONS GRID
   ============================================================ */
.solutions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}
.solution-card {
  border: 1.5px solid var(--gray-m);
  border-radius: 14px;
  padding: 1.75rem;
  transition: box-shadow .2s, border-color .2s, transform .2s;
  cursor: default;
}
.solution-card:hover {
  box-shadow: var(--shadow);
  border-color: var(--green);
  transform: translateY(-3px);
}
.sol-icon {
  width: 48px; height: 48px;
  background: rgba(26,138,74,.1);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 1rem;
}
.solution-card h4 { color: var(--navy); margin-bottom: .4rem; }
.solution-card a {
  display: inline-block;
  margin-top: .75rem;
  font-size: .85rem; font-weight: 700;
  color: var(--green);
}
.solution-card a:hover { text-decoration: underline; }

/* ============================================================
   INDUSTRIES
   ============================================================ */
.industries-bg { background: var(--gray); }
.industries-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1rem;
  margin-top: 2.5rem;
}
.industry-chip {
  background: var(--white);
  border: 1.5px solid var(--gray-m);
  border-radius: var(--radius);
  padding: .85rem 1rem;
  font-size: .88rem; font-weight: 600;
  color: var(--text);
  transition: border-color .2s, color .2s;
}
.industry-chip:hover { border-color: var(--green); color: var(--green); }

/* ============================================================
   WHY CHOOSE
   ============================================================ */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  margin-top: 2rem;
}
.why-list { margin-top: 1.5rem; }
.why-item {
  display: flex; gap: 1rem; align-items: flex-start;
  padding: 1rem 0;
  border-bottom: 1px solid var(--gray-m);
}
.why-item:last-child { border-bottom: none; }
.why-icon {
  width: 40px; height: 40px; flex-shrink: 0;
  background: rgba(26,138,74,.1);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
}
.why-item h4 { color: var(--navy); margin-bottom: .2rem; font-size: .95rem; }
.why-item p  { font-size: .88rem; }
.why-visual {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-m) 100%);
  border-radius: 18px;
  padding: 2.5rem;
  color: var(--white);
}
.why-visual h3 { color: var(--white); font-size: 1.5rem; margin-bottom: 1rem; }
.why-visual p  { color: rgba(255,255,255,.75); margin-bottom: 1.5rem; }
.why-visual .btn-primary { background: var(--white); color: var(--navy); }
.why-visual .btn-primary:hover { background: var(--gray); }

@media (max-width: 900px) {
  .why-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   FAQ
   ============================================================ */
.faq-list { margin-top: 2rem; max-width: 760px; }
.faq-item {
  border-bottom: 1px solid var(--gray-m);
  padding: 1.25rem 0;
}
.faq-q {
  font-weight: 700; color: var(--navy);
  cursor: pointer;
  display: flex; justify-content: space-between; align-items: center;
  gap: 1rem;
}
.faq-q .arrow { font-size: 1rem; color: var(--green); transition: transform .2s; }
.faq-a { color: var(--muted); font-size: .92rem; margin-top: .75rem; display: none; }
.faq-item.open .faq-a { display: block; }
.faq-item.open .arrow { transform: rotate(180deg); }

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
  background: linear-gradient(135deg, var(--green) 0%, var(--green-d) 100%);
  color: var(--white);
  text-align: center;
  padding: 70px 5%;
}
.cta-banner h2 { color: var(--white); margin-bottom: .75rem; }
.cta-banner p  { color: rgba(255,255,255,.85); margin-bottom: 2rem; font-size: 1.05rem; }
.btn-white {
  display: inline-block;
  background: var(--white);
  color: var(--green);
  font-weight: 700; font-size: 1rem;
  padding: .9rem 2.5rem;
  border-radius: 50px;
  transition: background .2s, transform .1s;
}
.btn-white:hover { background: var(--gray); transform: translateY(-1px); }

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  background: var(--navy);
  color: rgba(255,255,255,.7);
  padding: 60px 5% 30px;
}
.footer-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer-brand .logo { color: var(--white); font-size: 1.3rem; margin-bottom: .75rem; }
.footer-brand p { font-size: .875rem; line-height: 1.7; }
.footer-col h5 {
  color: var(--white); font-size: .82rem;
  font-weight: 700; letter-spacing: 1px;
  text-transform: uppercase; margin-bottom: 1rem;
}
.footer-col ul li { margin-bottom: .5rem; }
.footer-col ul li a { font-size: .875rem; transition: color .2s; }
.footer-col ul li a:hover { color: var(--white); }
.footer-bottom {
  max-width: 1200px; margin: 0 auto;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 1rem;
  padding-top: 1.5rem;
  font-size: .82rem;
}
.footer-bottom a { transition: color .2s; }
.footer-bottom a:hover { color: var(--white); }
.footer-links { display: flex; gap: 1.5rem; }

@media (max-width: 900px) {
  .footer-inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 540px) {
  .footer-inner { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* ============================================================
   PAGE BANNER
   ============================================================ */
.page-banner {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-m) 100%);
  color: var(--white);
  padding: 70px 5%;
  text-align: center;
}
.page-banner h1 { color: var(--white); margin-bottom: .75rem; }
.page-banner p  { color: rgba(255,255,255,.75); font-size: 1.1rem; max-width: 640px; margin: 0 auto; }

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-intro {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 3.5rem; align-items: center;
}
.about-intro p { margin-bottom: 1rem; }
.about-visual {
  background: var(--gray);
  border-radius: 18px;
  padding: 2.5rem;
  display: grid; grid-template-columns: 1fr 1fr; gap: 1rem;
}
.av-card {
  background: var(--white);
  border-radius: 10px; padding: 1.25rem;
  text-align: center;
}
.av-card .av-num { font-size: 1.8rem; font-weight: 800; color: var(--green); }
.av-card .av-label { font-size: .8rem; color: var(--muted); margin-top: .2rem; }

.values-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem;
  margin-top: 2.5rem;
}
.value-card {
  background: var(--white);
  border: 1.5px solid var(--gray-m);
  border-radius: 14px; padding: 1.75rem;
}
.val-icon { font-size: 2rem; margin-bottom: .75rem; }
.value-card h4 { color: var(--navy); margin-bottom: .4rem; }

@media (max-width: 768px) {
  .about-intro { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .about-visual { grid-template-columns: 1fr 1fr; }
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-grid {
  display: grid; grid-template-columns: 1fr 1.4fr;
  gap: 3rem; margin-top: 3rem;
}
.contact-info h3 { color: var(--navy); margin-bottom: 1.5rem; }
.contact-detail {
  display: flex; gap: 1rem; align-items: flex-start;
  margin-bottom: 1.5rem;
}
.cd-icon {
  width: 44px; height: 44px; flex-shrink: 0;
  background: rgba(26,138,74,.1);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
}
.contact-detail h5 { color: var(--navy); font-size: .9rem; margin-bottom: .2rem; }
.contact-detail p { font-size: .9rem; }
.contact-form-card {
  background: var(--white);
  border: 1.5px solid var(--gray-m);
  border-radius: 16px; padding: 2.5rem;
  box-shadow: var(--shadow);
}
.contact-form-card h3 { color: var(--navy); margin-bottom: 1.75rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { margin-bottom: 1.25rem; }
.form-group label { display: block; font-size: .85rem; font-weight: 600; color: var(--text); margin-bottom: .4rem; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: .75rem 1rem;
  border: 1.5px solid var(--gray-m);
  border-radius: var(--radius);
  font-size: .95rem; color: var(--text);
  outline: none; font-family: var(--font);
  transition: border-color .2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--green); }
.form-group textarea { resize: vertical; min-height: 120px; }

@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
}

/* ============================================================
   SOLUTIONS PAGE
   ============================================================ */
.sol-detail {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 3rem; align-items: center;
  padding: 50px 5%;
  max-width: 1200px; margin: 0 auto;
}
.sol-detail:nth-child(even) { direction: rtl; }
.sol-detail > * { direction: ltr; }
.sol-detail img { border-radius: 14px; }
.sol-detail h3 { color: var(--navy); margin-bottom: .75rem; }
.sol-detail ul {
  margin: 1rem 0 1.5rem;
  list-style: none;
}
.sol-detail ul li {
  padding: .4rem 0;
  font-size: .92rem; color: var(--muted);
  padding-left: 1.5rem; position: relative;
}
.sol-detail ul li::before {
  content: '✓';
  position: absolute; left: 0;
  color: var(--green); font-weight: 700;
}
.sol-divider { border: none; border-top: 1px solid var(--gray-m); margin: 0 5%; }
.sol-btn {
  display: inline-block;
  background: var(--green);
  color: var(--white);
  font-weight: 700; font-size: .9rem;
  padding: .7rem 1.75rem;
  border-radius: 50px;
  transition: background .2s;
}
.sol-btn:hover { background: var(--green-d); }

@media (max-width: 768px) {
  .sol-detail { grid-template-columns: 1fr; direction: ltr !important; }
}
