/* ═══════════════════════════════════════════════════════
   KASOMEKO MEDICAL TECHNOLOGY — SHARED STYLES
   ═══════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700&family=DM+Sans:wght@400;500;600;700&family=Montserrat:wght@400;500;600;700&display=swap');

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

:root {
  --green-900: #2D6A2E; --green-800: #337A35; --green-700: #3A8B3C; --green-600: #43A047;
  --green-500: #4CAF50; --green-400: #66BB6A; --green-300: #A5D6A7; --green-200: #C8E6C9;
  --green-100: #E8F5E9; --green-50: #F1F8F1;
  --lime-500: #8BC34A; --lime-400: #B2D235; --lime-300: #C6DC67;
  --white: #FFFFFF; --gray-50: #F8FAF8; --gray-100: #F1F3F1; --gray-200: #E2E5E2;
  --gray-300: #D0D5D0; --gray-400: #A0A8A0; --gray-600: #6B7B6B; --gray-700: #4A5A4A; --gray-900: #1A2E1A;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', 'Segoe UI', sans-serif;
  --font-brand: 'Montserrat', sans-serif;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06); --shadow-md: 0 4px 16px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 32px rgba(0,0,0,0.12); --shadow-xl: 0 16px 48px rgba(0,0,0,0.16);
  --radius-sm: 6px; --radius-md: 12px; --radius-lg: 20px; --radius-xl: 32px;
}

html { scroll-behavior: smooth; }
body { font-family: var(--font-body); color: var(--gray-900); background: var(--white); line-height: 1.6; overflow-x: hidden; }

/* ─── ANIMATIONS ─── */
@keyframes slideInLeft { from { opacity:0; transform:translateX(-60px); } to { opacity:1; transform:translateX(0); } }
@keyframes slideInRight { from { opacity:0; transform:translateX(60px); } to { opacity:1; transform:translateX(0); } }
@keyframes pulse { 0%,100% { transform:scale(1); } 50% { transform:scale(1.05); } }
@keyframes float { 0%,100% { transform:translateY(0); } 50% { transform:translateY(-10px); } }

.anim { opacity: 0; transform: translateY(40px); transition: opacity 0.7s cubic-bezier(0.4,0,0.2,1), transform 0.7s cubic-bezier(0.4,0,0.2,1); }
.anim.vis { opacity: 1; transform: translateY(0); }

/* ─── NAVIGATION ─── */
.nav { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; background: rgba(255,255,255,0.92); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); border-bottom: 1px solid rgba(45,106,46,0.08); transition: all 0.3s ease; }
.nav.scrolled { box-shadow: var(--shadow-md); }
.nav-inner { max-width: 1200px; margin: 0 auto; padding: 0 24px; display: flex; align-items: center; justify-content: space-between; height: 72px; }
.nav-logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.nav-logo-text { font-family: var(--font-brand); font-weight: 700; font-size: 16px; color: var(--green-900); letter-spacing: 2px; line-height: 1.2; }
.nav-logo-sub { font-size: 9px; font-weight: 500; color: var(--gray-600); letter-spacing: 1.5px; text-transform: uppercase; }
.nav-links { display: flex; align-items: center; gap: 28px; list-style: none; }
.nav-links a { font-family: var(--font-body); font-size: 14px; font-weight: 500; color: var(--gray-700); text-decoration: none; letter-spacing: 0.5px; position: relative; transition: color 0.2s; }
.nav-links a::after { content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 2px; background: var(--green-700); transition: width 0.3s ease; }
.nav-links a:hover, .nav-links a.active { color: var(--green-900); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-cta { background: var(--green-900) !important; color: var(--white) !important; padding: 10px 24px !important; border-radius: var(--radius-sm) !important; font-weight: 600 !important; transition: background 0.2s, transform 0.2s !important; }
.nav-cta:hover { background: var(--green-800) !important; transform: translateY(-1px) !important; }
.nav-cta::after { display: none !important; }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 8px; }
.hamburger span { width: 24px; height: 2px; background: var(--green-900); transition: all 0.3s; border-radius: 2px; display: block; }
.mobile-menu { display: none; position: fixed; top: 72px; left: 0; right: 0; bottom: 0; background: var(--white); z-index: 999; padding: 32px 24px; }
.mobile-menu.open { display: block; }
.mobile-menu a { display: block; font-size: 18px; font-weight: 500; color: var(--gray-900); text-decoration: none; padding: 16px 0; border-bottom: 1px solid var(--gray-200); }

/* ─── BUTTONS ─── */
.btn-primary { display: inline-flex; align-items: center; gap: 8px; background: var(--green-900); color: var(--white); padding: 14px 32px; border-radius: var(--radius-sm); font-family: var(--font-body); font-size: 15px; font-weight: 600; text-decoration: none; letter-spacing: 0.5px; transition: all 0.3s; border: none; cursor: pointer; }
.btn-primary:hover { background: var(--green-800); transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.btn-secondary { display: inline-flex; align-items: center; gap: 8px; background: transparent; color: var(--green-900); padding: 14px 32px; border-radius: var(--radius-sm); font-family: var(--font-body); font-size: 15px; font-weight: 600; text-decoration: none; letter-spacing: 0.5px; border: 2px solid var(--green-300); transition: all 0.3s; cursor: pointer; }
.btn-secondary:hover { border-color: var(--green-900); background: var(--green-50); }
.btn-secondary-light { display: inline-flex; align-items: center; gap: 8px; background: transparent; color: #fff; padding: 14px 32px; border-radius: var(--radius-sm); font-family: var(--font-body); font-size: 15px; font-weight: 600; border: 2px solid rgba(255,255,255,0.3); transition: all 0.3s; cursor: pointer; text-decoration: none; }
.btn-secondary-light:hover { border-color: #fff; background: rgba(255,255,255,0.08); }

/* ─── SECTIONS ─── */
.section { padding: 96px 24px; }
.section-inner { max-width: 1200px; margin: 0 auto; }
.section-header { text-align: center; margin-bottom: 64px; }
.section-tag { font-family: var(--font-brand); font-size: 12px; font-weight: 600; letter-spacing: 3px; text-transform: uppercase; color: var(--green-600); margin-bottom: 12px; }
.section-title { font-family: var(--font-display); font-size: clamp(28px, 4vw, 40px); font-weight: 700; color: var(--gray-900); margin-bottom: 16px; }
.section-subtitle { font-size: 17px; color: var(--gray-600); max-width: 560px; margin: 0 auto; line-height: 1.7; }
.body-text { font-size: 16px; color: var(--gray-600); line-height: 1.8; margin-bottom: 20px; }

/* ─── HERO ─── */
.hero { position: relative; min-height: 100vh; display: flex; align-items: center; overflow: hidden; background: linear-gradient(135deg, var(--green-50) 0%, var(--white) 40%, var(--green-100) 100%); }
.hero-bg-pattern { position: absolute; inset: 0; opacity: 0.04; background-image: radial-gradient(circle at 20% 80%, var(--green-900) 1px, transparent 1px), radial-gradient(circle at 80% 20%, var(--green-900) 1px, transparent 1px); background-size: 60px 60px; }
.hero-decoration { position: absolute; width: 600px; height: 600px; border-radius: 50%; border: 1px solid rgba(45,106,46,0.06); right: -100px; top: -100px; }
.hero-decoration-2 { position: absolute; width: 400px; height: 400px; border-radius: 50%; border: 1px solid rgba(45,106,46,0.04); right: 0; top: 0; }
.hero-decoration-3 { position: absolute; width: 300px; height: 300px; border-radius: 50%; background: radial-gradient(circle, rgba(178,210,53,0.08), transparent); left: -50px; bottom: -50px; animation: float 6s ease-in-out infinite; }
.hero-inner { max-width: 1200px; margin: 0 auto; padding: 120px 24px 80px; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; position: relative; z-index: 1; }
.hero-content { animation: slideInLeft 1s cubic-bezier(0.4, 0, 0.2, 1); }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; background: var(--green-100); color: var(--green-900); padding: 6px 16px; border-radius: 100px; font-size: 13px; font-weight: 600; letter-spacing: 0.5px; margin-bottom: 24px; }
.hero-badge-dot { width: 6px; height: 6px; background: var(--green-500); border-radius: 50%; animation: pulse 2s infinite; display: inline-block; }
.hero h1 { font-family: var(--font-display); font-size: clamp(36px, 5vw, 56px); font-weight: 700; line-height: 1.1; color: var(--gray-900); margin-bottom: 20px; }
.hero h1 span { color: var(--green-900); position: relative; }
.hero h1 span::after { content: ''; position: absolute; bottom: 2px; left: 0; right: 0; height: 8px; background: rgba(178,210,53,0.3); z-index: -1; }
.hero-desc { font-size: 18px; color: var(--gray-600); line-height: 1.7; margin-bottom: 36px; max-width: 480px; }
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-visual { display: flex; justify-content: center; align-items: center; position: relative; animation: slideInRight 1s cubic-bezier(0.4, 0, 0.2, 1); }
.hero-cross { position: relative; width: 340px; height: 340px; }
.hero-cross-bg { position: absolute; inset: -20px; border-radius: 50%; background: radial-gradient(circle, var(--green-100), transparent 70%); animation: pulse 4s ease-in-out infinite; }
.hero-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 48px; padding-top: 32px; border-top: 1px solid var(--gray-200); }
.hero-stat { text-align: center; }
.hero-stat-num { font-family: var(--font-display); font-size: 32px; font-weight: 700; color: var(--green-900); }
.hero-stat-label { font-size: 13px; color: var(--gray-600); margin-top: 4px; }

/* ─── HOME ABOUT ─── */
.home-about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.about-image-wrapper { position: relative; border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 4/3; background: linear-gradient(135deg, var(--green-200), var(--green-100)); display: flex; align-items: center; justify-content: center; }

/* ─── SERVICES ─── */
.services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.service-card { background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius-md); padding: 32px 24px; text-align: center; transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1); position: relative; overflow: hidden; cursor: pointer; }
.service-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--green-700), var(--lime-400)); transform: scaleX(0); transition: transform 0.4s; }
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: var(--green-300); }
.service-icon { width: 64px; height: 64px; margin: 0 auto 20px; background: var(--green-50); border-radius: var(--radius-md); display: flex; align-items: center; justify-content: center; transition: all 0.3s; }
.service-card:hover .service-icon { background: var(--green-900); }
.service-icon svg { width: 28px; height: 28px; color: var(--green-900); transition: color 0.3s; }
.service-card:hover .service-icon svg { color: var(--white); }
.service-card h3 { font-size: 17px; font-weight: 600; color: var(--gray-900); margin-bottom: 10px; }
.service-card p { font-size: 14px; color: var(--gray-600); line-height: 1.6; }

/* ─── VALUES ─── */
.values-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.value-card { text-align: center; padding: 40px 24px; border-radius: var(--radius-md); background: var(--white); border: 1px solid var(--gray-200); transition: all 0.4s; }
.value-card:hover { border-color: var(--green-300); box-shadow: var(--shadow-md); }
.value-icon { width: 72px; height: 72px; margin: 0 auto 20px; border-radius: 50%; background: linear-gradient(135deg, var(--green-100), var(--green-50)); display: flex; align-items: center; justify-content: center; }
.value-icon svg { width: 30px; height: 30px; color: var(--green-900); }
.value-card h3 { font-size: 16px; font-weight: 700; color: var(--gray-900); margin-bottom: 8px; letter-spacing: 0.5px; }
.value-card p { font-size: 14px; color: var(--gray-600); line-height: 1.6; }

/* ─── MISSION & VISION ─── */
.mv-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.mv-card { padding: 48px; border-radius: var(--radius-lg); position: relative; overflow: hidden; }
.mv-card.mission { background: var(--green-900); color: var(--white); }
.mv-card.vision { background: var(--white); border: 2px solid var(--green-200); color: var(--gray-900); }
.mv-card-pattern { position: absolute; top: -40px; right: -40px; width: 160px; height: 160px; border-radius: 50%; opacity: 0.08; }
.mv-card.mission .mv-card-pattern { background: var(--white); }
.mv-card.vision .mv-card-pattern { background: var(--green-500); }
.mv-card-icon { width: 52px; height: 52px; border-radius: var(--radius-md); display: flex; align-items: center; justify-content: center; margin-bottom: 24px; }
.mv-card.mission .mv-card-icon { background: rgba(255,255,255,0.15); }
.mv-card.vision .mv-card-icon { background: var(--green-100); }
.mv-card-icon svg { width: 24px; height: 24px; }
.mv-card.mission .mv-card-icon svg { color: var(--white); }
.mv-card.vision .mv-card-icon svg { color: var(--green-900); }
.mv-card h3 { font-family: var(--font-display); font-size: 28px; font-weight: 700; margin-bottom: 16px; }
.mv-card p { font-size: 16px; line-height: 1.8; opacity: 0.9; }

/* ─── PAGE BANNER ─── */
.page-banner { position: relative; padding: 140px 24px 64px; background: var(--green-900); color: var(--white); overflow: hidden; }
.page-banner-bg { position: absolute; inset: 0; opacity: 0.06; background-image: radial-gradient(circle at 30% 70%, #fff 1px, transparent 1px), radial-gradient(circle at 70% 30%, #fff 1px, transparent 1px); background-size: 50px 50px; }
.page-banner-inner { max-width: 1200px; margin: 0 auto; position: relative; z-index: 1; }
.page-banner-bread { font-size: 13px; margin-bottom: 16px; display: flex; gap: 8px; align-items: center; color: rgba(255,255,255,0.6); }
.page-banner-bread a { color: rgba(255,255,255,0.6); text-decoration: none; }
.page-banner-bread a:hover { color: var(--lime-400); }
.page-banner-title { font-family: var(--font-display); font-size: clamp(32px, 5vw, 52px); font-weight: 700; margin-bottom: 12px; }
.page-banner-sub { font-size: 18px; color: rgba(255,255,255,0.75); max-width: 600px; line-height: 1.6; }

/* ─── CTA BAND ─── */
.cta-band { background: linear-gradient(135deg, var(--green-900) 0%, #1a4a1b 100%); color: var(--white); padding: 96px 24px; text-align: center; }
.cta-band-inner { max-width: 700px; margin: 0 auto; }
.cta-band h2 { font-family: var(--font-display); font-size: clamp(28px, 4vw, 40px); font-weight: 700; margin-bottom: 16px; }
.cta-band p { font-size: 17px; color: rgba(255,255,255,0.75); line-height: 1.7; }
.cta-band-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-top: 32px; }

/* ─── ABOUT PAGE ─── */
.about-story-grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: 64px; align-items: start; }
.about-stats-col { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.about-stat-card { background: var(--green-50); border: 1px solid var(--green-200); border-radius: var(--radius-md); padding: 28px 20px; text-align: center; }
.about-stat-num { font-family: var(--font-display); font-size: 36px; font-weight: 700; color: var(--green-900); }
.about-stat-label { font-size: 13px; color: var(--gray-600); margin-top: 4px; }

/* ─── TEAM ─── */
.team-card { background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius-lg); padding: 48px 40px; text-align: center; box-shadow: var(--shadow-sm); }
.team-avatar { width: 88px; height: 88px; border-radius: 50%; background: linear-gradient(135deg, var(--green-900), var(--green-700)); color: var(--white); font-family: var(--font-display); font-size: 28px; font-weight: 700; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; }
.team-card h3 { font-family: var(--font-display); font-size: 24px; font-weight: 700; margin-bottom: 4px; }
.team-role { font-size: 14px; color: var(--green-700); font-weight: 600; letter-spacing: 0.5px; margin-bottom: 16px; }
.team-bio { font-size: 15px; color: var(--gray-600); line-height: 1.7; margin-bottom: 20px; }
.team-contact { display: flex; flex-direction: column; gap: 8px; align-items: center; }
.team-contact span { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--gray-600); }
.team-contact svg { width: 14px; height: 14px; }

/* ─── SERVICES DETAIL ─── */
.service-detail-card { display: grid; grid-template-columns: 1.5fr 1fr; gap: 48px; align-items: center; padding: 48px; background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius-lg); margin-bottom: 32px; transition: all 0.3s; }
.service-detail-card:hover { box-shadow: var(--shadow-md); border-color: var(--green-300); }
.service-detail-card.reverse { direction: rtl; }
.service-detail-card.reverse > * { direction: ltr; }
.service-icon-lg { width: 56px; height: 56px; background: var(--green-100); border-radius: var(--radius-md); display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.service-icon-lg svg { width: 26px; height: 26px; color: var(--green-900); }
.service-detail-content h2 { font-family: var(--font-display); font-size: 28px; font-weight: 700; margin-bottom: 12px; }
.service-detail-content p { font-size: 15px; color: var(--gray-600); line-height: 1.7; margin-bottom: 20px; }
.service-features { display: flex; flex-direction: column; gap: 10px; }
.service-feature-item { display: flex; align-items: center; gap: 10px; font-size: 14px; color: var(--gray-700); }
.service-detail-visual { display: flex; align-items: center; justify-content: center; }
.service-detail-icon-big { width: 120px; height: 120px; background: linear-gradient(135deg, var(--green-100), var(--green-50)); border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.service-detail-icon-big svg { width: 48px; height: 48px; color: var(--green-900); }

/* ─── PRODUCTS ─── */
.products-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.product-category-card { background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius-md); padding: 32px; transition: all 0.3s; }
.product-category-card:hover { box-shadow: var(--shadow-md); border-color: var(--green-300); }
.product-cat-header { display: flex; align-items: center; gap: 16px; margin-bottom: 24px; padding-left: 16px; border-left: 3px solid; }
.product-cat-icon { width: 44px; height: 44px; border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; }
.product-cat-icon svg { width: 22px; height: 22px; }
.product-cat-header h3 { font-size: 20px; font-weight: 700; }
.product-list { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.product-list li { display: flex; align-items: center; gap: 10px; font-size: 14px; color: var(--gray-700); padding: 8px 12px; background: var(--gray-50); border-radius: var(--radius-sm); transition: background 0.2s; }
.product-list li:hover { background: var(--green-50); }

/* ─── QA ─── */
.qa-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.qa-card { text-align: center; padding: 32px 20px; }
.qa-icon { width: 56px; height: 56px; margin: 0 auto 16px; border-radius: 50%; background: var(--green-100); display: flex; align-items: center; justify-content: center; }
.qa-icon svg { width: 24px; height: 24px; color: var(--green-900); }
.qa-card h4 { font-size: 15px; font-weight: 700; margin-bottom: 6px; }
.qa-card p { font-size: 13px; color: var(--gray-600); line-height: 1.6; }

/* ─── VALUES DETAIL ─── */
.value-detail-card { display: flex; align-items: flex-start; gap: 32px; padding: 40px; background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius-lg); margin-bottom: 24px; transition: all 0.3s; }
.value-detail-card:hover { box-shadow: var(--shadow-md); border-color: var(--green-300); }
.value-detail-num { font-family: var(--font-display); font-size: 48px; font-weight: 700; line-height: 1; min-width: 60px; }
.value-detail-icon { width: 56px; height: 56px; border-radius: var(--radius-md); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.value-detail-icon svg { width: 26px; height: 26px; }
.value-detail-content h3 { font-family: var(--font-display); font-size: 24px; font-weight: 700; margin-bottom: 8px; }
.value-detail-content p { font-size: 15px; color: var(--gray-600); line-height: 1.8; }

/* ─── WHY ─── */
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.why-card { background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius-md); padding: 32px 24px; text-align: center; transition: all 0.3s; }
.why-card:hover { box-shadow: var(--shadow-md); border-color: var(--green-300); transform: translateY(-4px); }
.why-icon { width: 52px; height: 52px; margin: 0 auto 16px; border-radius: 50%; background: var(--green-50); display: flex; align-items: center; justify-content: center; }
.why-icon svg { width: 22px; height: 22px; color: var(--green-900); }
.why-card h4 { font-size: 15px; font-weight: 700; margin-bottom: 6px; }
.why-card p { font-size: 13px; color: var(--gray-600); line-height: 1.5; }

/* ─── CLIENTS ─── */
.clients-detail-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.client-detail-card { background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius-lg); padding: 36px; transition: all 0.3s; }
.client-detail-card:hover { box-shadow: var(--shadow-md); border-color: var(--green-300); }
.client-detail-header { display: flex; align-items: center; gap: 16px; margin-bottom: 16px; }
.client-detail-icon { width: 48px; height: 48px; border-radius: var(--radius-md); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.client-detail-icon svg { width: 22px; height: 22px; }
.client-detail-header h3 { font-family: var(--font-display); font-size: 22px; font-weight: 700; }
.client-detail-card p { font-size: 15px; color: var(--gray-600); line-height: 1.7; }

/* ─── PARTNERSHIP STATS ─── */
.partnership-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 48px; }
.partnership-stat { text-align: center; padding: 32px 16px; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.08); border-radius: var(--radius-md); }
.partnership-stat-num { font-family: var(--font-display); font-size: 36px; font-weight: 700; color: var(--lime-400); }
.partnership-stat-label { font-size: 13px; color: rgba(255,255,255,0.6); margin-top: 4px; }

/* ─── CONTACT ─── */
.contact-page-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; }
.contact-info-full h3 { font-family: var(--font-display); font-size: 28px; font-weight: 700; margin-bottom: 16px; }
.contact-cards-stack { display: flex; flex-direction: column; gap: 16px; margin-top: 32px; }
.contact-detail-full { display: flex; align-items: flex-start; gap: 16px; padding: 20px; background: var(--gray-50); border-radius: var(--radius-md); border: 1px solid var(--gray-200); }
.contact-detail-icon { width: 44px; height: 44px; border-radius: var(--radius-sm); background: var(--green-100); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-detail-icon svg { width: 20px; height: 20px; color: var(--green-900); }
.contact-detail-full h4 { font-size: 14px; font-weight: 600; margin-bottom: 4px; }
.contact-detail-full p { font-size: 14px; color: var(--gray-600); margin: 0; line-height: 1.5; }
.contact-form { background: var(--white); padding: 40px; border-radius: var(--radius-lg); border: 1px solid var(--gray-200); box-shadow: var(--shadow-sm); }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 13px; font-weight: 600; color: var(--gray-700); margin-bottom: 6px; letter-spacing: 0.3px; }
.form-group input, .form-group textarea, .form-group select { width: 100%; padding: 12px 16px; border: 1px solid var(--gray-300); border-radius: var(--radius-sm); font-family: var(--font-body); font-size: 14px; color: var(--gray-900); background: var(--white); transition: border-color 0.2s, box-shadow 0.2s; outline: none; }
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { border-color: var(--green-500); box-shadow: 0 0 0 3px rgba(76,175,80,0.15); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-submit { width: 100%; padding: 14px; background: var(--green-900); color: var(--white); border: none; border-radius: var(--radius-sm); font-family: var(--font-body); font-size: 15px; font-weight: 600; cursor: pointer; transition: all 0.3s; letter-spacing: 0.5px; }
.form-submit:hover { background: var(--green-800); transform: translateY(-1px); box-shadow: var(--shadow-md); }

/* ─── TOAST NOTIFICATIONS ─── */
#siteToast {
  position: fixed;
  top: 90px;
  right: 24px;
  z-index: 9999;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  max-width: 420px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-xl);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  transform: translateX(calc(100% + 24px));
  opacity: 0;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.35s ease;
}
#siteToast.show {
  transform: translateX(0);
  opacity: 1;
}
#siteToast.toast.success {
  background: #f0fdf4;
  color: #166534;
  border: 1px solid #bbf7d0;
}
#siteToast.toast.error {
  background: #fef2f2;
  color: #991b1b;
  border: 1px solid #fecaca;
}
#siteToast.toast.warning {
  background: #fffbeb;
  color: #92400e;
  border: 1px solid #fde68a;
}
.toast-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  font-size: 13px;
  font-weight: 700;
  flex-shrink: 0;
}
.toast.success .toast-icon { background: #dcfce7; }
.toast.error .toast-icon { background: #fee2e2; }
.toast.warning .toast-icon { background: #fef3c7; }
.toast-text { flex: 1; line-height: 1.5; }
.toast-close {
  background: none;
  border: none;
  font-size: 20px;
  cursor: pointer;
  padding: 0 0 0 8px;
  opacity: 0.5;
  transition: opacity 0.2s;
  line-height: 1;
}
.toast-close:hover { opacity: 1; }

@media (max-width: 640px) {
  #siteToast {
    top: auto;
    bottom: 24px;
    right: 16px;
    left: 16px;
    max-width: none;
  }
}

/* ─── FORM STATUS MESSAGES ─── */
.form-status { display: none; padding: 12px 16px; border-radius: var(--radius-sm); font-size: 14px; font-weight: 500; margin-top: 16px; }
.form-status.show { display: block; }
.form-status.success { background: var(--green-100); color: var(--green-900); border: 1px solid var(--green-300); }
.form-status.error { background: #fee2e2; color: #b91c1c; border: 1px solid #fca5a5; }
.g-recaptcha { margin-top: 16px; display: flex; justify-content: center; }

/* ─── FOOTER ─── */
.footer { background: var(--gray-900); color: var(--white); padding: 64px 24px 0; }
.footer-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,0.08); }
.footer-brand p { font-size: 14px; color: rgba(255,255,255,0.6); line-height: 1.7; margin-top: 16px; max-width: 300px; }
.footer h4 { font-size: 14px; font-weight: 600; margin-bottom: 20px; letter-spacing: 0.5px; }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 12px; }
.footer-links a { font-size: 14px; color: rgba(255,255,255,0.6); text-decoration: none; transition: color 0.2s; }
.footer-links a:hover { color: var(--lime-400); }
.footer-bottom { max-width: 1200px; margin: 0 auto; padding: 24px 0; display: flex; justify-content: space-between; align-items: center; font-size: 13px; color: rgba(255,255,255,0.4); }

/* ─── IMAGES ─── */
.page-banner { position: relative; overflow: hidden; }
.page-banner > img, .page-banner-bg-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.page-banner > .page-banner-bg-img { opacity: 0.15; }
.page-banner-inner { position: relative; z-index: 1; }

.section-img { width: 100%; border-radius: var(--radius-lg); object-fit: cover; }
.about-image-wrapper { position: relative; border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 4/3; background: linear-gradient(135deg, var(--green-200), var(--green-100)); }
.about-image-wrapper img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }

.service-detail-visual { position: relative; width: 100%; aspect-ratio: 4/3; border-radius: var(--radius-lg); overflow: hidden; background: linear-gradient(135deg, var(--green-100), var(--green-50)); }
.service-detail-visual img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.service-detail-icon-big { display: none; }

.team-card { position: relative; overflow: hidden; }
.team-portrait { width: 100%; max-width: 200px; border-radius: var(--radius-md); object-fit: cover; margin: 0 auto 20px; display: block; }

.client-detail-card { position: relative; overflow: hidden; }
.client-img { width: 100%; height: 180px; object-fit: cover; border-radius: var(--radius-md); margin-bottom: 16px; }

.qa-section-img { width: 100%; max-width: 500px; margin: 0 auto; border-radius: var(--radius-lg); object-fit: cover; display: block; }

.cta-band { position: relative; overflow: hidden; }
.cta-band > img, .cta-band-bg-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.cta-band > .cta-band-bg-img { opacity: 0.1; }
.cta-band-inner { position: relative; z-index: 1; }

.partnership-stats-section { position: relative; overflow: hidden; }
.partnership-bg-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0.15; }

.why-section-img { width: 100%; max-width: 600px; margin: 0 auto; border-radius: var(--radius-lg); object-fit: cover; display: block; }

.contact-office-img { width: 100%; max-width: 400px; border-radius: var(--radius-lg); object-fit: cover; display: block; margin-top: 24px; }

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; text-align: center; }
  .hero-desc { margin: 0 auto 36px; }
  .hero-btns { justify-content: center; }
  .hero-visual { display: none; }
  .home-about-grid, .about-story-grid, .contact-page-grid { grid-template-columns: 1fr; }
  .services-grid, .values-grid, .qa-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .service-detail-card { grid-template-columns: 1fr; }
  .service-detail-card.reverse { direction: ltr; }
  .service-detail-visual { display: none; }
  .partnership-stats { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .hero h1 { font-size: 32px; }
  .hero-stats { grid-template-columns: repeat(3, 1fr); gap: 16px; }
  .hero-stat-num { font-size: 24px; }
  .services-grid, .mv-grid, .values-grid, .qa-grid, .products-grid, .clients-detail-grid, .why-grid { grid-template-columns: 1fr; }
  .about-stats-col { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .section { padding: 64px 20px; }
  .mv-card { padding: 32px; }
  .value-detail-card { flex-direction: column; gap: 16px; padding: 28px; }
  .value-detail-num { font-size: 36px; }
  .service-detail-card { padding: 28px; }
  .contact-form { padding: 24px; }
  .partnership-stats { grid-template-columns: 1fr 1fr; }
}
