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

:root {
  --primary: #1B4F8A;
  --primary-dark: #163d6e;
  --primary-light: #2563aa;
  --accent: #00AEEF;
  --accent-dark: #0090c7;
  --bg-light: #E8F4FD;
  --white: #ffffff;
  --dark: #0f1c2e;
  --text: #374151;
  --gray: #6b7280;
  --border: #e2e8f0;
  --success: #10b981;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
  --shadow: 0 4px 20px rgba(27,79,138,0.12);
  --shadow-lg: 0 10px 40px rgba(27,79,138,0.2);
  --radius: 8px;
  --radius-lg: 16px;
  --transition: 0.3s ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Inter', Arial, sans-serif; color: var(--text); line-height: 1.6; background: var(--white); -webkit-font-smoothing: antialiased; }
img { max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; transition: color var(--transition); }
ul { list-style: none; }

/* Typography */
h1, h2, h3, h4 { font-weight: 700; line-height: 1.2; color: var(--dark); }
h1 { font-size: clamp(28px, 5vw, 48px); }
h2 { font-size: clamp(22px, 3vw, 36px); }
h3 { font-size: clamp(18px, 2vw, 24px); }
p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

/* Layout */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
section { padding: 80px 0; }

.section-header { text-align: center; max-width: 700px; margin: 0 auto 60px; }
.section-tag {
  display: inline-block;
  background: var(--bg-light);
  color: var(--primary);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 16px;
}
.section-header h2 { margin-bottom: 16px; }
.section-header p { color: var(--gray); font-size: 17px; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-family: 'Inter', Arial, sans-serif;
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  white-space: nowrap;
  text-align: center;
}
.btn-primary { background: var(--accent); color: var(--white); border-color: var(--accent); }
.btn-primary:hover { background: var(--accent-dark); border-color: var(--accent-dark); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,174,239,0.35); }
.btn-secondary { background: transparent; color: var(--primary); border-color: var(--primary); }
.btn-secondary:hover { background: var(--primary); color: var(--white); transform: translateY(-2px); }
.btn-white { background: var(--white); color: var(--primary); border-color: var(--white); }
.btn-white:hover { background: var(--bg-light); transform: translateY(-2px); }
.btn-outline-white { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.6); }
.btn-outline-white:hover { background: rgba(255,255,255,0.12); border-color: var(--white); }
.btn-lg { padding: 18px 36px; font-size: 16px; }

/* Navbar */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--transition);
}
.navbar.scrolled { box-shadow: var(--shadow); }
.navbar .container { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.navbar-brand { display: flex; align-items: center; gap: 10px; font-weight: 800; font-size: 20px; color: var(--primary); }
.brand-icon {
  width: 38px; height: 38px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
  color: white; font-size: 20px;
}
.navbar-brand .brand-text span { color: var(--accent); }
.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links li a { padding: 8px 14px; border-radius: var(--radius); font-weight: 500; font-size: 15px; color: var(--text); transition: all var(--transition); }
.nav-links li a:hover, .nav-links li a.active { color: var(--primary); background: var(--bg-light); }
.nav-cta { margin-left: 8px; }
.nav-cta .btn { padding: 10px 22px; font-size: 14px; text-transform: none; letter-spacing: 0; }
.hamburger { display: none; background: none; border: 1.5px solid var(--border); cursor: pointer; padding: 8px 10px; border-radius: var(--radius); font-size: 20px; color: var(--primary); transition: all var(--transition); }
.hamburger:hover { background: var(--bg-light); }
.mobile-menu { display: none; position: absolute; top: 100%; left: 0; right: 0; background: var(--white); border-bottom: 1px solid var(--border); box-shadow: var(--shadow); padding: 16px 24px 24px; z-index: 999; }
.mobile-menu.open { display: block; }
.mobile-menu ul { display: flex; flex-direction: column; gap: 4px; }
.mobile-menu ul li a { display: block; padding: 12px 16px; border-radius: var(--radius); font-weight: 500; color: var(--text); transition: all var(--transition); }
.mobile-menu ul li a:hover { background: var(--bg-light); color: var(--primary); }
.mobile-menu .btn { display: block; width: 100%; text-align: center; margin-top: 12px; }

/* Hero */
.hero {
  background: linear-gradient(135deg, #1B4F8A 0%, #163d6e 55%, #0f2444 100%);
  color: var(--white);
  padding: 100px 0 80px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; top: -40%; right: -15%;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(0,174,239,0.18) 0%, transparent 70%);
  pointer-events: none;
}
.hero::after {
  content: ''; position: absolute; bottom: -40%; left: -10%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(0,174,239,0.09) 0%, transparent 70%);
  pointer-events: none;
}
.hero .container { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.hero-tag {
  display: inline-block;
  background: rgba(0,174,239,0.18);
  color: var(--accent);
  font-size: 12px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1.5px;
  padding: 6px 16px; border-radius: 100px;
  margin-bottom: 24px;
  border: 1px solid rgba(0,174,239,0.3);
}
.hero-content h1 { color: var(--white); font-size: clamp(30px, 5vw, 54px); font-weight: 800; margin-bottom: 20px; line-height: 1.15; }
.hero-content h1 .highlight { color: var(--accent); }
.hero-content p { font-size: 18px; color: rgba(255,255,255,0.85); margin-bottom: 36px; line-height: 1.7; }
.hero-cta { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-visual { display: flex; justify-content: center; align-items: center; }

/* Workflow diagram card */
.workflow-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
  padding: 28px;
  width: 100%;
  max-width: 420px;
  backdrop-filter: blur(10px);
}
.workflow-card-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 20px; }
.workflow-card-header h4 { color: rgba(255,255,255,0.9); font-size: 13px; text-transform: uppercase; letter-spacing: 1px; }
.live-badge { background: rgba(16,185,129,0.2); color: #34d399; font-size: 11px; font-weight: 700; padding: 4px 10px; border-radius: 100px; display: flex; align-items: center; gap: 5px; }
.live-dot { width: 6px; height: 6px; background: #34d399; border-radius: 50%; animation: pulse 1.5s infinite; }
@keyframes pulse { 0%,100%{opacity:1;} 50%{opacity:0.4;} }
.workflow-step-item { display: flex; align-items: center; gap: 14px; padding: 14px 16px; background: rgba(255,255,255,0.06); border-radius: var(--radius); margin-bottom: 8px; border: 1px solid rgba(255,255,255,0.07); transition: all var(--transition); }
.workflow-step-item:last-child { margin-bottom: 0; }
.workflow-step-item:hover { background: rgba(255,255,255,0.1); }
.ws-icon { width: 38px; height: 38px; border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 17px; flex-shrink: 0; }
.ws-icon.c1 { background: rgba(0,174,239,0.2); }
.ws-icon.c2 { background: rgba(16,185,129,0.2); }
.ws-icon.c3 { background: rgba(249,115,22,0.2); }
.ws-icon.c4 { background: rgba(139,92,246,0.2); }
.ws-info h5 { color: var(--white); font-size: 13px; font-weight: 600; margin-bottom: 1px; }
.ws-info p { color: rgba(255,255,255,0.55); font-size: 11px; margin: 0; }
.ws-status { margin-left: auto; font-size: 11px; font-weight: 700; padding: 3px 10px; border-radius: 100px; white-space: nowrap; }
.ws-status.active { background: rgba(16,185,129,0.2); color: #34d399; }
.ws-status.running { background: rgba(0,174,239,0.2); color: var(--accent); }
.ws-status.queued { background: rgba(249,115,22,0.2); color: #fb923c; }
.ws-status.done { background: rgba(139,92,246,0.2); color: #a78bfa; }

/* Trust Bar */
.trust-bar { background: var(--primary); padding: 32px 0; }
.trust-bar .container { display: grid; grid-template-columns: repeat(4,1fr); gap: 0; }
.trust-item { text-align: center; padding: 12px 16px; border-right: 1px solid rgba(255,255,255,0.15); }
.trust-item:last-child { border-right: none; }
.trust-item .number { font-size: 36px; font-weight: 800; color: var(--accent); display: block; line-height: 1; margin-bottom: 6px; }
.trust-item .label { font-size: 14px; color: rgba(255,255,255,0.8); font-weight: 500; }

/* Service Cards */
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 28px; }
.service-card {
  background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 32px 28px; transition: all var(--transition); position: relative; overflow: hidden;
}
.service-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--primary), var(--accent)); opacity: 0; transition: opacity var(--transition); }
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }
.service-card:hover::before { opacity: 1; }
.service-icon { width: 56px; height: 56px; background: var(--bg-light); border-radius: 14px; display: flex; align-items: center; justify-content: center; font-size: 26px; margin-bottom: 20px; transition: background var(--transition); }
.service-card:hover .service-icon { background: linear-gradient(135deg, var(--primary), var(--accent)); }
.service-card h3 { font-size: 20px; margin-bottom: 12px; }
.service-card p { color: var(--gray); font-size: 15px; margin-bottom: 20px; }
.service-check-list { display: flex; flex-direction: column; gap: 8px; margin-bottom: 24px; }
.service-check-list li { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; color: var(--text); }
.service-check-list li::before { content: '✓'; color: var(--accent); font-weight: 800; font-size: 11px; width: 18px; height: 18px; background: rgba(0,174,239,0.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 2px; }
.learn-more { display: inline-flex; align-items: center; gap: 8px; color: var(--primary); font-weight: 600; font-size: 14px; transition: gap var(--transition); }
.learn-more:hover { gap: 12px; color: var(--accent); }

/* How it Works */
.how-it-works { background: var(--bg-light); }
.process-steps { display: grid; grid-template-columns: repeat(3,1fr); gap: 40px; position: relative; }
.process-steps::before { content: ''; position: absolute; top: 38px; left: calc(16.66% + 24px); right: calc(16.66% + 24px); height: 2px; background: linear-gradient(90deg, var(--primary), var(--accent)); }
.process-step { text-align: center; }
.step-number { width: 76px; height: 76px; background: linear-gradient(135deg, var(--primary), var(--accent)); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 28px; font-weight: 800; color: var(--white); margin: 0 auto 24px; position: relative; z-index: 1; box-shadow: 0 8px 24px rgba(27,79,138,0.3); }
.process-step h3 { font-size: 20px; margin-bottom: 12px; color: var(--primary); }
.process-step p { color: var(--gray); font-size: 15px; max-width: 260px; margin: 0 auto; }

/* Testimonials */
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px,1fr)); gap: 28px; }
.testimonial-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 32px; position: relative; transition: all var(--transition); }
.testimonial-card:hover { box-shadow: var(--shadow); transform: translateY(-4px); }
.testimonial-card::before { content: '"'; position: absolute; top: 16px; right: 24px; font-size: 80px; color: var(--bg-light); font-family: Georgia, serif; line-height: 1; pointer-events: none; }
.stars { color: #f59e0b; font-size: 15px; margin-bottom: 16px; letter-spacing: 2px; }
.testimonial-card blockquote { font-size: 15px; color: var(--text); line-height: 1.7; margin-bottom: 24px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.author-avatar { width: 48px; height: 48px; border-radius: 50%; background: linear-gradient(135deg, var(--primary), var(--accent)); display: flex; align-items: center; justify-content: center; color: white; font-weight: 800; font-size: 17px; flex-shrink: 0; }
.author-info .name { font-weight: 700; font-size: 15px; color: var(--dark); }
.author-info .role { font-size: 13px; color: var(--gray); }

/* CTA Banner */
.cta-banner { background: linear-gradient(135deg, var(--primary) 0%, #0f2444 100%); color: var(--white); text-align: center; padding: 80px 0; position: relative; overflow: hidden; }
.cta-banner::before { content: ''; position: absolute; top: -50%; left: 50%; transform: translateX(-50%); width: 800px; height: 400px; background: radial-gradient(ellipse, rgba(0,174,239,0.2) 0%, transparent 70%); pointer-events: none; }
.cta-banner .container { position: relative; z-index: 1; }
.cta-banner h2 { color: var(--white); font-size: clamp(26px, 4vw, 40px); margin-bottom: 20px; }
.cta-banner p { color: rgba(255,255,255,0.85); font-size: 17px; max-width: 580px; margin: 0 auto 36px; }
.cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* Page Hero */
.page-hero { background: linear-gradient(135deg, var(--primary) 0%, #1a3a6b 100%); color: var(--white); padding: 70px 0 60px; text-align: center; }
.page-hero h1 { color: var(--white); margin-bottom: 16px; }
.page-hero p { color: rgba(255,255,255,0.85); font-size: 17px; max-width: 580px; margin: 0 auto; }
.breadcrumb { display: flex; align-items: center; justify-content: center; gap: 8px; font-size: 13px; color: rgba(255,255,255,0.65); margin-bottom: 16px; }
.breadcrumb a { color: rgba(255,255,255,0.65); }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb span { color: rgba(255,255,255,0.4); }

/* About */
.story-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.story-content h2 { margin-bottom: 20px; }
.story-content p { color: var(--gray); font-size: 16px; line-height: 1.8; margin-bottom: 20px; }
.story-visual { background: var(--bg-light); border-radius: var(--radius-lg); padding: 40px; text-align: center; }
.story-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 20px; }
.story-stat { background: var(--white); border-radius: var(--radius); padding: 20px; text-align: center; border: 1px solid var(--border); }
.story-stat .num { font-size: 32px; font-weight: 800; color: var(--primary); display: block; }
.story-stat .lbl { font-size: 13px; color: var(--gray); }
.values-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 24px; }
.value-card { background: var(--bg-light); border-radius: var(--radius-lg); padding: 32px; border-left: 4px solid var(--accent); transition: all var(--transition); }
.value-card:hover { background: var(--white); box-shadow: var(--shadow); }
.value-icon { font-size: 32px; margin-bottom: 16px; }
.value-card h3 { font-size: 19px; color: var(--primary); margin-bottom: 10px; }
.value-card p { color: var(--gray); font-size: 15px; margin: 0; }
.team-cta { background: var(--primary); border-radius: var(--radius-lg); padding: 48px; text-align: center; color: var(--white); }
.team-cta h3 { color: var(--white); font-size: 24px; margin-bottom: 12px; }
.team-cta p { color: rgba(255,255,255,0.8); margin-bottom: 24px; font-size: 16px; }

/* Services Detailed */
.service-detail { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; padding: 60px 0; border-bottom: 1px solid var(--border); }
.service-detail:last-child { border-bottom: none; }
.service-detail.reverse .service-detail-visual { order: -1; }
.service-detail-content h2 { margin-bottom: 16px; }
.service-detail-content > p { color: var(--gray); font-size: 16px; margin-bottom: 28px; line-height: 1.8; }
.service-list { display: flex; flex-direction: column; gap: 10px; margin-bottom: 32px; }
.service-list li { display: flex; align-items: flex-start; gap: 12px; font-size: 15px; color: var(--text); }
.service-list li::before { content: '✓'; color: var(--white); font-weight: 800; background: var(--accent); width: 20px; height: 20px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 11px; flex-shrink: 0; margin-top: 2px; }
.service-detail-visual { background: var(--bg-light); border-radius: var(--radius-lg); padding: 40px; min-height: 280px; display: flex; align-items: center; justify-content: center; flex-direction: column; gap: 12px; text-align: center; }
.service-detail-visual .big-icon { font-size: 72px; }
.service-detail-visual p { font-size: 15px; font-weight: 600; color: var(--primary); margin: 0; }

/* Pricing */
.pricing-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; align-items: start; }
.pricing-card { background: var(--white); border: 2px solid var(--border); border-radius: var(--radius-lg); padding: 36px 28px; position: relative; transition: all var(--transition); }
.pricing-card:hover { box-shadow: var(--shadow-lg); }
.pricing-card.featured { border-color: var(--accent); box-shadow: var(--shadow-lg); }
.pricing-badge { position: absolute; top: -14px; left: 50%; transform: translateX(-50%); background: linear-gradient(90deg, var(--primary), var(--accent)); color: var(--white); font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: 1px; padding: 5px 18px; border-radius: 100px; white-space: nowrap; }
.pricing-tier { font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: 2px; color: var(--accent); margin-bottom: 8px; }
.pricing-card h3 { font-size: 26px; margin-bottom: 8px; }
.price-row { margin: 16px 0; }
.price-from { font-size: 13px; color: var(--gray); display: block; margin-bottom: 2px; }
.price-amount { font-size: 38px; font-weight: 800; color: var(--primary); line-height: 1; }
.price-amount.custom-price { font-size: 30px; }
.price-unit { font-size: 14px; color: var(--gray); margin-left: 4px; }
.pricing-desc { color: var(--gray); font-size: 14px; padding-bottom: 20px; border-bottom: 1px solid var(--border); margin-bottom: 20px; line-height: 1.5; }
.pricing-features { display: flex; flex-direction: column; gap: 12px; margin-bottom: 32px; }
.pf { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; color: var(--text); }
.pf .ck { color: var(--accent); font-weight: 800; flex-shrink: 0; font-size: 13px; }
.pf .dash { color: #d1d5db; flex-shrink: 0; }
.pricing-card .btn { width: 100%; justify-content: center; }
.pricing-note { text-align: center; color: var(--gray); font-size: 14px; margin-top: 40px; padding: 20px 24px; background: var(--bg-light); border-radius: var(--radius); font-style: italic; }

/* Contact */
.contact-grid { display: grid; grid-template-columns: 1fr 1.6fr; gap: 60px; }
.contact-info h2 { margin-bottom: 16px; }
.contact-info > p { color: var(--gray); font-size: 16px; margin-bottom: 36px; line-height: 1.7; }
.contact-detail { display: flex; align-items: flex-start; gap: 16px; margin-bottom: 28px; }
.contact-detail .cd-icon { width: 44px; height: 44px; background: var(--bg-light); border-radius: var(--radius); display: flex; align-items: center; justify-content: center; font-size: 20px; flex-shrink: 0; }
.contact-detail .cd-info h4 { font-size: 14px; font-weight: 700; margin-bottom: 4px; color: var(--dark); }
.contact-detail .cd-info p { font-size: 14px; color: var(--gray); margin: 0; }
.contact-detail .cd-info a { color: var(--primary); font-weight: 600; }
.contact-detail .cd-info a:hover { color: var(--accent); }
.response-badge { display: flex; align-items: center; gap: 10px; background: rgba(16,185,129,0.1); border: 1px solid rgba(16,185,129,0.2); border-radius: var(--radius); padding: 14px 18px; margin-top: 32px; }
.response-badge .rb-dot { width: 8px; height: 8px; background: var(--success); border-radius: 50%; flex-shrink: 0; }
.response-badge p { font-size: 13px; color: var(--success); font-weight: 600; margin: 0; }
.contact-form-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 40px; box-shadow: var(--shadow); }
.contact-form-card h3 { margin-bottom: 8px; }
.contact-form-card > p { color: var(--gray); font-size: 15px; margin-bottom: 28px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 14px; font-weight: 600; color: var(--dark); margin-bottom: 7px; }
.form-group input, .form-group select, .form-group textarea { width: 100%; padding: 12px 16px; border: 1.5px solid var(--border); border-radius: var(--radius); font-family: 'Inter', Arial, sans-serif; font-size: 15px; color: var(--text); background: var(--white); transition: border-color var(--transition), box-shadow var(--transition); outline: none; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--accent); box-shadow: 0 0 0 3px rgba(0,174,239,0.1); }
.form-group select { cursor: pointer; -webkit-appearance: none; appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%236b7280' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 12px center; padding-right: 40px; }
.form-group textarea { resize: vertical; min-height: 130px; }
.form-submit { width: 100%; justify-content: center; }
.form-promise { text-align: center; margin-top: 14px; color: var(--gray); font-size: 13px; }
.form-success { display: none; text-align: center; padding: 20px; background: rgba(16,185,129,0.1); border: 1px solid rgba(16,185,129,0.2); border-radius: var(--radius); color: var(--success); font-weight: 600; margin-top: 16px; }

/* Footer */
.footer { background: var(--dark); color: var(--white); padding: 64px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,0.1); }
.footer-brand-row { display: flex; align-items: center; gap: 10px; font-weight: 800; font-size: 19px; margin-bottom: 16px; }
.footer-brand-row .brand-icon { width: 36px; height: 36px; }
.footer-brand-row .brand-text span { color: var(--accent); }
.footer-col .about-text { color: rgba(255,255,255,0.6); font-size: 14px; line-height: 1.7; margin-bottom: 24px; }
.footer-social { display: flex; gap: 10px; }
.social-link { width: 38px; height: 38px; background: rgba(255,255,255,0.08); border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 16px; transition: all var(--transition); }
.social-link:hover { background: var(--accent); transform: translateY(-2px); }
.footer-col h4 { color: var(--white); font-size: 14px; font-weight: 700; margin-bottom: 20px; text-transform: uppercase; letter-spacing: 0.5px; }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { color: rgba(255,255,255,0.6); font-size: 14px; transition: color var(--transition); }
.footer-links a:hover { color: var(--accent); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding: 24px 0; font-size: 13px; color: rgba(255,255,255,0.45); }
.footer-legal { display: flex; gap: 20px; }
.footer-legal a { color: rgba(255,255,255,0.45); transition: color var(--transition); }
.footer-legal a:hover { color: var(--accent); }

/* Backgrounds */
.bg-light { background: var(--bg-light); }

/* Animations */
@keyframes fadeInUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
.anim-card { opacity: 0; transform: translateY(20px); transition: opacity 0.55s ease, transform 0.55s ease; }
.anim-card.visible { opacity: 1; transform: translateY(0); }

/* Responsive */
@media (max-width: 1024px) {
  .hero .container { grid-template-columns: 1fr; text-align: center; }
  .hero-cta { justify-content: center; }
  .hero-visual { display: none; }
  .process-steps::before { display: none; }
  .process-steps { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .service-detail { grid-template-columns: 1fr; }
  .service-detail.reverse .service-detail-visual { order: 0; }
  .values-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .story-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  section { padding: 60px 0; }
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: block; }
  .trust-bar .container { grid-template-columns: repeat(2,1fr); gap: 0; }
  .trust-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.15); }
  .trust-item:nth-child(odd) { border-right: 1px solid rgba(255,255,255,0.15); }
  .trust-item:nth-last-child(-n+2) { border-bottom: none; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .footer-legal { gap: 16px; flex-wrap: wrap; justify-content: center; }
  .contact-form-card { padding: 24px; }
}
