/*
Theme Name: Yggdrasil
Theme URI: https://yggdrasil.ph
Author: Yggdrasil Web Solutions, Inc.
Description: Custom theme for Yggdrasil.ph, rebuilt from the original static design into an editable WordPress theme.
Version: 1.0.0
Text Domain: yggdrasil
*/

:root {
  --green: #2EE87A;
  --green-mid: #1CC860;
  --green-dark: #0A9440;
  --green-dim: rgba(46,232,122,0.12);
  --green-glow: rgba(46,232,122,0.35);
  --off-white: #f0fdf5;
  --light-gray: #e8f5ee;
  --mid-gray: #6b8f78;
  --dark: #071a0f;
  --dark2: #0d2418;
  --line: rgba(46,232,122,0.18);
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Roboto', sans-serif; background: #f8fefc; color: #0d2418; overflow-x: hidden; }

/* CANVAS */
#grid-canvas { position: fixed; top: 0; left: 0; width: 100%; height: 100%; pointer-events: none; z-index: 0; opacity: 0.45; }

/* NAV */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 60px; height: 70px;
  background: rgba(248,254,252,0.93); backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
}
.nav-logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.logo-icon { width: 36px; height: 36px; flex-shrink: 0; }
.logo-icon svg { width: 100%; height: 100%; }
.nav-brand { font-size: 1.15rem; font-weight: 700; letter-spacing: 0.08em; color: var(--dark2); text-transform: uppercase; white-space: nowrap; }
.nav-brand span { color: var(--green-dark); }
.nav-links { display: flex; gap: 36px; list-style: none; align-items: center; }
.nav-links a { font-size: 0.78rem; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; color: var(--mid-gray); text-decoration: none; transition: color 0.2s; font-family: 'Roboto Mono', monospace; }
.nav-links a:hover { color: var(--green-dark); }
.nav-cta { background: var(--green-dark) !important; color: #fff !important; padding: 8px 22px; border-radius: 2px; font-size: 0.75rem !important; font-weight: 700 !important; letter-spacing: 0.14em !important; transition: background 0.2s, box-shadow 0.2s !important; }
.nav-cta:hover { background: var(--green-mid) !important; box-shadow: 0 0 20px var(--green-glow) !important; }

/* Hamburger */
.nav-hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 6px; background: none; border: none; z-index: 300; }
.nav-hamburger span { display: block; width: 24px; height: 2px; background: var(--dark2); border-radius: 2px; transition: all 0.3s; }
.nav-hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Drawer */
.nav-drawer { display: none; position: fixed; top: 70px; left: 0; right: 0; bottom: 0; background: rgba(248,254,252,0.98); backdrop-filter: blur(20px); z-index: 150; padding: 32px 24px; flex-direction: column; border-top: 1px solid var(--line); overflow-y: auto; }
.nav-drawer.open { display: flex; }
.nav-drawer a { font-family: 'Roboto Mono', monospace; font-size: 0.95rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: var(--dark2); text-decoration: none; padding: 18px 0; border-bottom: 1px solid var(--line); transition: color 0.2s, padding-left 0.2s; }
.nav-drawer a:hover { color: var(--green-dark); padding-left: 8px; }
.drawer-cta { margin-top: 20px; background: var(--green-dark) !important; color: #fff !important; text-align: center; padding: 18px !important; border-radius: 2px; font-weight: 700 !important; border-bottom: none !important; }

/* HERO */
.hero { position: relative; z-index: 1; min-height: 100vh; display: flex; flex-direction: column; justify-content: center; padding: 130px 60px 80px; overflow: hidden; }
.hero-tag { font-family: 'Roboto Mono', monospace; font-size: 0.7rem; font-weight: 500; letter-spacing: 0.2em; color: var(--green-dark); text-transform: uppercase; margin-bottom: 28px; display: flex; align-items: center; gap: 12px; opacity: 0; animation: fadeUp 0.8s ease 0.2s forwards; }
.hero-tag::before { content: ''; width: 32px; height: 1px; background: var(--green-dark); }
.hero h1 { font-size: clamp(2.4rem, 6vw, 5.5rem); font-weight: 900; line-height: 1.0; color: var(--dark2); letter-spacing: -0.03em; max-width: 820px; opacity: 0; animation: fadeUp 0.9s ease 0.4s forwards; }
.hero h1 .accent { color: var(--green-dark); position: relative; display: inline-block; }
.hero h1 .accent::after { content: ''; position: absolute; bottom: 4px; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--green-dark), var(--green)); border-radius: 2px; }
.hero-sub { margin-top: 32px; font-size: 1.05rem; font-weight: 300; color: var(--mid-gray); max-width: 560px; line-height: 1.8; opacity: 0; animation: fadeUp 0.9s ease 0.6s forwards; }
.hero-actions { margin-top: 44px; display: flex; gap: 16px; align-items: center; flex-wrap: wrap; opacity: 0; animation: fadeUp 0.9s ease 0.8s forwards; }

.btn-primary { background: var(--green-dark); color: #fff; padding: 14px 36px; font-family: 'Roboto', sans-serif; font-size: 0.82rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; border: none; border-radius: 2px; cursor: pointer; text-decoration: none; display: inline-block; transition: background 0.2s, box-shadow 0.25s; clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 0 100%); }
.btn-primary:hover { background: var(--green-mid); box-shadow: 0 8px 30px var(--green-glow); }
.btn-outline { background: transparent; color: var(--green-dark); padding: 13px 36px; font-family: 'Roboto', sans-serif; font-size: 0.82rem; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; border: 1.5px solid var(--green-dark); border-radius: 2px; cursor: pointer; text-decoration: none; display: inline-block; transition: background 0.2s; }
.btn-outline:hover { background: var(--green-dim); }

.hero-stats { position: absolute; right: 60px; top: 50%; transform: translateY(-50%); display: flex; flex-direction: column; gap: 32px; opacity: 0; animation: fadeLeft 1s ease 1s forwards; }
.stat-item { text-align: right; border-right: 2px solid var(--green); padding-right: 20px; }
.stat-num { font-size: 2rem; font-weight: 900; color: var(--dark2); line-height: 1; font-family: 'Roboto Mono', monospace; }
.stat-num span { color: var(--green-dark); }
.stat-label { font-size: 0.65rem; font-weight: 500; letter-spacing: 0.16em; text-transform: uppercase; color: var(--mid-gray); margin-top: 4px; font-family: 'Roboto Mono', monospace; }

.scroll-indicator { position: absolute; bottom: 40px; left: 60px; display: flex; align-items: center; gap: 12px; font-family: 'Roboto Mono', monospace; font-size: 0.65rem; letter-spacing: 0.18em; color: var(--mid-gray); text-transform: uppercase; opacity: 0; animation: fadeUp 1s ease 1.2s forwards; }
.scroll-line { width: 40px; height: 1px; background: var(--green-dark); position: relative; overflow: hidden; }
.scroll-line::after { content: ''; position: absolute; top: 0; left: -100%; width: 100%; height: 100%; background: var(--green); animation: scanLine 2s linear infinite; }

/* COMMON */
section { position: relative; z-index: 1; }
.section-label { font-family: 'Roboto Mono', monospace; font-size: 0.68rem; font-weight: 500; letter-spacing: 0.22em; text-transform: uppercase; color: var(--green-dark); display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.section-label::before { content: ''; width: 20px; height: 1px; background: var(--green-dark); }
.section-title { font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 800; color: var(--dark2); letter-spacing: -0.02em; line-height: 1.15; }

/* TICKER */
.ticker-wrap { background: var(--dark2); padding: 14px 0; overflow: hidden; position: relative; z-index: 2; }
.ticker-track { display: flex; width: max-content; animation: ticker 28s linear infinite; }
.ticker-item { font-family: 'Roboto Mono', monospace; font-size: 0.72rem; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase; color: var(--green); white-space: nowrap; padding: 0 40px; display: flex; align-items: center; gap: 20px; }
.ticker-item::after { content: '//'; color: rgba(46,232,122,0.35); }

/* SERVICES */
.services { padding: 100px 60px; background: white; }
.services-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 64px; padding-bottom: 40px; border-bottom: 1px solid var(--line); gap: 40px; }
.services-header-right { max-width: 320px; font-size: 0.85rem; color: var(--mid-gray); line-height: 1.75; font-weight: 300; flex-shrink: 0; }
.services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px; background: var(--line); }
.service-card { background: white; padding: 40px 32px; position: relative; overflow: hidden; transition: transform 0.3s, box-shadow 0.3s; }
.service-card::before { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 2px; background: linear-gradient(90deg, var(--green-dark), var(--green)); transform: scaleX(0); transform-origin: left; transition: transform 0.4s; }
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(10,148,64,0.1); }
.service-num { font-family: 'Roboto Mono', monospace; font-size: 0.65rem; font-weight: 500; color: var(--green-dark); letter-spacing: 0.18em; margin-bottom: 24px; opacity: 0.7; }
.service-icon { width: 44px; height: 44px; margin-bottom: 20px; color: var(--green-dark); }
.service-title { font-size: 1.05rem; font-weight: 700; color: var(--dark2); margin-bottom: 12px; line-height: 1.3; }
.service-desc { font-size: 0.82rem; font-weight: 300; color: var(--mid-gray); line-height: 1.7; }

/* TRUST */
.trust { padding: 80px 60px; background: var(--off-white); }
.trust-inner { display: flex; justify-content: space-between; align-items: center; gap: 40px; flex-wrap: wrap; }
.trust-left { max-width: 380px; }
.trust-left p { font-size: 0.88rem; font-weight: 300; color: var(--mid-gray); line-height: 1.75; margin-top: 16px; }
.trust-logos { display: flex; flex-wrap: wrap; gap: 10px; flex: 1; justify-content: flex-end; }
.trust-logo { background: white; border: 1px solid var(--light-gray); padding: 12px 22px; border-radius: 2px; font-family: 'Roboto Mono', monospace; font-size: 0.7rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: var(--mid-gray); transition: border-color 0.2s, color 0.2s; }
.trust-logo:hover { border-color: var(--green-dark); color: var(--green-dark); }

/* WHY */
.why { padding: 100px 60px; background: var(--dark2); position: relative; overflow: hidden; }
.why::before { content: 'YGGDRASIL'; position: absolute; right: -20px; top: 50%; transform: translateY(-50%) rotate(90deg); font-size: 10rem; font-weight: 900; letter-spacing: 0.1em; color: rgba(46,232,122,0.04); pointer-events: none; white-space: nowrap; }
.why .section-label { color: var(--green); }
.why .section-label::before { background: var(--green); }
.why .section-title { color: white; }
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; margin-top: 64px; align-items: center; }
.why-list { display: flex; flex-direction: column; }
.why-item { padding: 28px 0; border-bottom: 1px solid rgba(46,232,122,0.1); display: flex; gap: 24px; align-items: flex-start; transition: padding-left 0.3s; }
.why-item:hover { padding-left: 8px; }
.why-item-num { font-family: 'Roboto Mono', monospace; font-size: 0.65rem; font-weight: 500; color: var(--green); letter-spacing: 0.14em; margin-top: 4px; min-width: 30px; }
.why-item-text h4 { font-size: 1rem; font-weight: 700; color: white; margin-bottom: 6px; }
.why-item-text p { font-size: 0.82rem; font-weight: 300; color: rgba(255,255,255,0.45); line-height: 1.7; }
.why-visual { display: flex; align-items: center; justify-content: center; }
.hex-grid { position: relative; width: 380px; height: 380px; }
.hex-ring { position: absolute; border-radius: 50%; border: 1px solid rgba(46,232,122,0.15); top: 50%; left: 50%; transform: translate(-50%,-50%); animation: pulse-ring 4s ease-in-out infinite; }
.hex-ring:nth-child(1) { width: 100px; height: 100px; animation-delay: 0s; }
.hex-ring:nth-child(2) { width: 180px; height: 180px; animation-delay: 0.5s; }
.hex-ring:nth-child(3) { width: 260px; height: 260px; animation-delay: 1s; }
.hex-ring:nth-child(4) { width: 340px; height: 340px; animation-delay: 1.5s; }
.hex-center { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 70px; height: 70px; background: var(--green-dark); border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: 0 0 40px var(--green-glow), 0 0 80px rgba(46,232,122,0.15); }
.hex-center svg { width: 32px; height: 32px; }
.hex-dot { position: absolute; width: 8px; height: 8px; background: var(--green); border-radius: 50%; top: 50%; left: 50%; transform-origin: center; box-shadow: 0 0 6px var(--green); }
.hex-dot:nth-child(5) { animation: orbit 6s linear infinite; }
.hex-dot:nth-child(6) { animation: orbit2 9s linear infinite; }
.hex-dot:nth-child(7) { animation: orbit3 12s linear infinite; }

/* PROCESS */
.process { padding: 100px 60px; background: white; }
.process-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; margin-top: 60px; position: relative; }
.process-grid::before { content: ''; position: absolute; top: 36px; left: 7%; right: 7%; height: 1px; background: linear-gradient(90deg, transparent, var(--green-dark), transparent); z-index: 0; }
.process-step { padding: 0 10px; text-align: center; }
.process-num { width: 72px; height: 72px; border-radius: 50%; border: 2px solid var(--green-dark); background: white; display: flex; align-items: center; justify-content: center; font-family: 'Roboto Mono', monospace; font-size: 0.9rem; font-weight: 700; color: var(--green-dark); margin: 0 auto 24px; position: relative; z-index: 1; transition: background 0.2s, color 0.2s; }
.process-step:hover .process-num { background: var(--green-dark); color: white; }
.process-step h4 { font-size: 0.9rem; font-weight: 700; color: var(--dark2); margin-bottom: 8px; }
.process-step p { font-size: 0.78rem; font-weight: 300; color: var(--mid-gray); line-height: 1.65; }

/* SOLUTIONS */
.solutions { padding: 100px 60px; background: var(--off-white); }
.solutions-header { margin-bottom: 56px; }
.solutions-flex { display: flex; flex-direction: column; gap: 2px; }
.solution-row { display: grid; grid-template-columns: 200px 1fr auto; align-items: center; gap: 40px; padding: 24px 32px; background: white; border-left: 3px solid transparent; transition: border-color 0.25s, background 0.25s; }
.solution-row:hover { border-color: var(--green-dark); background: #f0fdf5; }
.sol-cat { font-family: 'Roboto Mono', monospace; font-size: 0.68rem; font-weight: 500; letter-spacing: 0.16em; text-transform: uppercase; color: var(--green-dark); }
.sol-name { font-size: 1.05rem; font-weight: 600; color: var(--dark2); }
.sol-name small { display: block; font-size: 0.78rem; font-weight: 300; color: var(--mid-gray); margin-top: 3px; }
.sol-badge { font-family: 'Roboto Mono', monospace; font-size: 0.62rem; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; padding: 5px 12px; border: 1px solid var(--line); border-radius: 2px; color: var(--mid-gray); white-space: nowrap; }

/* CONTACT */
.cta-section { padding: 100px 60px; background: white; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.cta-left .section-title { margin-bottom: 20px; }
.cta-left > p { font-size: 0.9rem; color: var(--mid-gray); line-height: 1.8; font-weight: 300; margin-bottom: 36px; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.contact-card { background: var(--off-white); padding: 20px 18px; border-radius: 2px; border: 1px solid var(--light-gray); transition: border-color 0.2s; }
.contact-card:hover { border-color: var(--green-dark); }
.contact-card-label { font-family: 'Roboto Mono', monospace; font-size: 0.6rem; font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase; color: var(--green-dark); margin-bottom: 8px; }
.contact-card-value { font-size: 0.85rem; font-weight: 600; color: var(--dark2); line-height: 1.6; }
.contact-card-value a { color: inherit; text-decoration: none; transition: color 0.2s; }
.contact-card-value a:hover { color: var(--green-dark); }

.cta-form { display: flex; flex-direction: column; gap: 14px; background: var(--off-white); padding: 44px 40px; border: 1px solid var(--light-gray); position: relative; }
.cta-form::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--green-dark), var(--green)); }
.cta-form form { display: flex; flex-direction: column; gap: 14px; }
.form-label { font-family: 'Roboto Mono', monospace; font-size: 0.65rem; font-weight: 500; letter-spacing: 0.16em; text-transform: uppercase; color: var(--mid-gray); margin-bottom: 6px; display: block; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-group { display: flex; flex-direction: column; }
.form-input, .cta-form input[type=text], .cta-form input[type=email], .cta-form input[type=tel], .cta-form select, .cta-form textarea { background: white; border: 1px solid var(--light-gray); padding: 11px 14px; font-family: 'Roboto', sans-serif; font-size: 0.85rem; color: var(--dark2); border-radius: 1px; outline: none; transition: border-color 0.2s; width: 100%; }
.form-input:focus, .cta-form input:focus, .cta-form select:focus, .cta-form textarea:focus { border-color: var(--green-dark); }
.form-input::placeholder, .cta-form input::placeholder, .cta-form textarea::placeholder { color: #bbb; }
textarea.form-input, .cta-form textarea { resize: vertical; min-height: 90px; }
.form-submit, .cta-form input[type=submit] { background: var(--green-dark); color: white; border: none; padding: 14px; font-family: 'Roboto', sans-serif; font-size: 0.8rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; cursor: pointer; border-radius: 1px; transition: background 0.2s, box-shadow 0.2s; margin-top: 6px; width: 100%; }
.form-submit:hover, .cta-form input[type=submit]:hover { background: var(--green-mid); box-shadow: 0 6px 24px var(--green-glow); }
.cta-form .wpcf7-not-valid-tip { color: #c0392b; font-size: 0.72rem; margin-top: 4px; font-weight: 400; }
.cta-form .wpcf7-response-output { border-radius: 2px; padding: 12px 14px; font-size: 0.82rem; margin-top: 10px; }
.form-success { display: none; text-align: center; padding: 40px 20px; }
.form-success .check { font-size: 3rem; margin-bottom: 16px; }
.form-success h4 { font-size: 1.1rem; font-weight: 700; color: var(--green-dark); margin-bottom: 10px; }
.form-success p { font-size: 0.85rem; color: var(--mid-gray); line-height: 1.7; }

/* FOOTER */
footer { background: var(--dark); padding: 60px 60px 32px; position: relative; z-index: 1; }
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 60px; padding-bottom: 48px; border-bottom: 1px solid rgba(46,232,122,0.1); }
.footer-brand .nav-brand { color: white; font-size: 1.2rem; }
.footer-brand .nav-brand span { color: var(--green); }
.footer-brand p { margin-top: 16px; font-size: 0.82rem; font-weight: 300; color: rgba(255,255,255,0.35); line-height: 1.75; max-width: 280px; }
.footer-socials { display: flex; gap: 10px; margin-top: 24px; }
.footer-social { width: 36px; height: 36px; border: 1px solid rgba(46,232,122,0.2); border-radius: 2px; display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.35); text-decoration: none; font-family: 'Roboto Mono', monospace; font-size: 0.68rem; transition: color 0.2s, border-color 0.2s; }
.footer-social:hover { color: var(--green); border-color: var(--green); }
.footer-col h5 { font-family: 'Roboto Mono', monospace; font-size: 0.65rem; font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase; color: var(--green); margin-bottom: 20px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a { font-size: 0.82rem; font-weight: 300; color: rgba(255,255,255,0.4); text-decoration: none; transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--green); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 28px; flex-wrap: wrap; gap: 10px; }
.footer-copy { font-family: 'Roboto Mono', monospace; font-size: 0.65rem; color: rgba(255,255,255,0.22); letter-spacing: 0.1em; }
.footer-reg { font-family: 'Roboto Mono', monospace; font-size: 0.62rem; color: rgba(255,255,255,0.15); }

/* GENERIC PAGE (privacy policy etc.) */
.generic-page { padding: 150px 60px 100px; max-width: 860px; margin: 0 auto; }
.generic-page h1 { font-size: clamp(1.8rem,3.5vw,2.6rem); font-weight: 800; color: var(--dark2); margin-bottom: 24px; }
.generic-page h2 { font-size: 1.3rem; font-weight: 700; color: var(--dark2); margin: 32px 0 12px; }
.generic-page p, .generic-page li { font-size: 0.92rem; font-weight: 300; color: var(--mid-gray); line-height: 1.8; margin-bottom: 14px; }
.generic-page ul { padding-left: 22px; }
.generic-page a { color: var(--green-dark); }

/* ANIMATIONS */
@keyframes fadeUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeLeft { from { opacity: 0; transform: translate(24px, -50%); } to { opacity: 1; transform: translate(0, -50%); } }
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes scanLine { from { left: -100%; } to { left: 100%; } }
@keyframes pulse-ring { 0%,100% { opacity: 0.15; transform: translate(-50%,-50%) scale(1); } 50% { opacity: 0.3; transform: translate(-50%,-50%) scale(1.02); } }
@keyframes orbit  { from { transform: translate(-50%,-50%) rotate(0deg) translateX(90px);   } to { transform: translate(-50%,-50%) rotate(360deg) translateX(90px);   } }
@keyframes orbit2 { from { transform: translate(-50%,-50%) rotate(120deg) translateX(130px); } to { transform: translate(-50%,-50%) rotate(480deg) translateX(130px); } }
@keyframes orbit3 { from { transform: translate(-50%,-50%) rotate(240deg) translateX(165px); } to { transform: translate(-50%,-50%) rotate(600deg) translateX(165px); } }

/* ======== RESPONSIVE ======== */
@media (max-width: 1100px) {
  nav { padding: 0 30px; }
  .hero { padding: 120px 30px 80px; }
  .hero-stats { right: 30px; }
  .services, .why, .process, .solutions, .cta-section, .trust { padding-left: 30px; padding-right: 30px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: repeat(3, 1fr); gap: 28px; }
  .process-grid::before { display: none; }
  .solution-row { gap: 24px; }
  footer { padding: 50px 30px 28px; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 900px) {
  .why-grid { grid-template-columns: 1fr; }
  .why-visual { display: none; }
  .cta-section { grid-template-columns: 1fr; gap: 50px; }
  .services-header { flex-direction: column; align-items: flex-start; }
  .services-header-right { max-width: 100%; }
  .trust-inner { flex-direction: column; align-items: flex-start; }
  .trust-logos { justify-content: flex-start; }
  .solution-row { grid-template-columns: 140px 1fr; }
  .sol-badge { display: none; }
}

@media (max-width: 768px) {
  nav { padding: 0 20px; height: 64px; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .nav-drawer { top: 64px; }

  .hero { padding: 100px 20px 70px; }
  .hero h1 { font-size: clamp(2rem, 8vw, 3rem); }
  .hero-sub { font-size: 0.92rem; }
  .hero-stats { display: none; }
  .scroll-indicator { left: 20px; bottom: 24px; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .btn-primary, .btn-outline { text-align: center; }

  .services, .why, .process, .solutions, .cta-section, .trust { padding: 60px 20px; }
  .services-grid { grid-template-columns: 1fr; }
  .service-card { padding: 28px 20px; }

  .why::before { display: none; }
  .why-grid { margin-top: 36px; }

  .process-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
  .process-grid::before { display: none; }

  .solution-row { grid-template-columns: 1fr; gap: 6px; padding: 18px 16px; }
  .sol-badge { display: none; }

  .cta-form { padding: 28px 20px; }
  .form-row { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }

  footer { padding: 40px 20px 24px; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 6px; }

  .generic-page { padding: 110px 20px 60px; }
}

@media (max-width: 480px) {
  .process-grid { grid-template-columns: 1fr; }
  .hero h1 { font-size: 1.9rem; }
  .section-title { font-size: 1.6rem; }
  .hero-tag { font-size: 0.62rem; }
}
