/* ===== RESET & BASE ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary: #0891b2;
  --primary-dark: #0e7490;
  --primary-light: #22d3ee;
  --accent: #f59e0b;
  --accent-dark: #d97706;
  --bg: #f8fafc;
  --bg-alt: #f1f5f9;
  --surface: #ffffff;
  --text-dark: #0f172a;
  --text-body: #334155;
  --text-muted: #64748b;
  --border: #e2e8f0;
  --border-light: #f1f5f9;
  --glass-bg: rgba(255, 255, 255, 0.7);
  --glass-border: rgba(255, 255, 255, 0.5);
  --shadow-sm: 0 2px 8px rgba(15, 23, 42, 0.06);
  --shadow-md: 0 8px 24px rgba(15, 23, 42, 0.08);
  --shadow-lg: 0 20px 40px rgba(15, 23, 42, 0.1);
  --shadow-hover: 0 30px 60px rgba(8, 145, 178, 0.2);
  --radius: 20px;
  --radius-sm: 12px;
  --radius-lg: 28px;
  --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--bg);
  color: var(--text-body);
  line-height: 1.7;
  overflow-x: hidden;
  position: relative;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

button {
  cursor: pointer;
  border: none;
  font-family: inherit;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: var(--text-dark);
  font-weight: 700;
  line-height: 1.2;
}

/* ===== BACKGROUND GRADIENTS ===== */
.bg-gradient {
  position: fixed;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
  z-index: 0;
  opacity: 0.4;
}

.bg-gradient-1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(8, 145, 178, 0.25), transparent);
  top: -150px;
  left: -150px;
}

.bg-gradient-2 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.18), transparent);
  top: 40%;
  right: -200px;
}

.bg-gradient-3 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(34, 211, 238, 0.2), transparent);
  bottom: -150px;
  left: 30%;
}

/* ===== NAVIGATION ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 18px 0;
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-light);
  transition: var(--transition);
}

.navbar.scrolled {
  padding: 12px 0;
  background: rgba(248, 250, 252, 0.95);
  box-shadow: var(--shadow-sm);
}

.nav-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 1001;
}

.logo-mark {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 800;
  font-size: 14px;
  box-shadow: var(--shadow-md);
}

.logo-text {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 18px;
  font-weight: 800;
  color: var(--text-dark);
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 36px;
}

.nav-links a {
  font-size: 15px;
  font-weight: 500;
  color: var(--text-body);
  position: relative;
}

.nav-links a:hover {
  color: var(--primary);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: var(--transition);
  border-radius: 2px;
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-cta {
  padding: 10px 22px;
  background: var(--text-dark);
  color: white;
  border-radius: 100px;
  font-weight: 600;
  font-size: 14px;
  transition: var(--transition);
}

.nav-cta:hover {
  background: var(--primary);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.mobile-toggle {
  display: none;
  width: 32px;
  height: 32px;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: transparent;
  z-index: 1001;
}

.mobile-toggle span {
  width: 100%;
  height: 2px;
  background: var(--text-dark);
  transition: var(--transition);
  border-radius: 2px;
}

.mobile-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.mobile-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 15px;
  transition: var(--transition);
  cursor: pointer;
  border: none;
  text-align: center;
  justify-content: center;
}

.btn-primary {
  background: var(--text-dark);
  color: white;
  box-shadow: var(--shadow-md);
}

.btn-primary:hover {
  background: var(--primary);
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
}

.btn-arrow {
  display: inline-block;
  transition: transform 0.3s;
}

.btn-primary:hover .btn-arrow {
  transform: translateX(4px);
}

.btn-ghost {
  background: transparent;
  color: var(--text-dark);
  border: 2px solid var(--border);
}

.btn-ghost:hover {
  background: var(--bg-alt);
  border-color: var(--primary);
  color: var(--primary);
  transform: translateY(-3px);
}

.full-width {
  width: 100%;
}

/* ===== HERO SECTION ===== */
.hero {
  padding: 140px 0 80px;
  position: relative;
  z-index: 1;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 18px;
  background: white;
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 14px;
  margin-bottom: 28px;
  color: var(--text-body);
  box-shadow: var(--shadow-sm);
}

.badge-icon {
  font-size: 16px;
}

.hero-title {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.highlight {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
}

.hero-intro {
  font-size: 18px;
  color: var(--text-body);
  margin-bottom: 36px;
  line-height: 1.7;
}

.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.trust-row {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.trust-item strong {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: var(--text-dark);
}

.trust-item span {
  font-size: 13px;
  color: var(--text-muted);
}

.trust-stars {
  color: var(--accent);
  font-size: 18px;
}

.trust-divider {
  width: 1px;
  height: 36px;
  background: var(--border);
}

/* Hero Visual Cards */
.hero-visual {
  position: relative;
  height: 500px;
}

.hero-card {
  position: absolute;
  background: white;
  padding: 18px 22px;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 14px;
  animation: floatCard 6s ease-in-out infinite;
  z-index: 2;
}

.hero-card .card-icon {
  font-size: 28px;
}

.hero-card .card-content strong {
  display: block;
  font-size: 14px;
  color: var(--text-dark);
  margin-bottom: 2px;
}

.hero-card .card-content p {
  font-size: 12px;
  color: var(--text-muted);
  margin: 0;
}

.card-1 {
  top: 20px;
  left: 0;
  animation-delay: 0s;
}

.card-2 {
  top: 120px;
  right: 0;
  animation-delay: 2s;
}

.card-3 {
  bottom: 40px;
  left: 40px;
  animation-delay: 4s;
}

@keyframes floatCard {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

.hero-main-card {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border-radius: var(--radius-lg);
  padding: 40px;
  color: white;
  text-align: center;
  box-shadow: var(--shadow-lg);
  z-index: 1;
}

.hero-main-card h3 {
  color: white;
  font-size: 24px;
  margin: 20px 0 8px;
}

.hero-main-card p {
  opacity: 0.9;
  font-size: 15px;
}

/* Roof Illustration */
.roof-illustration {
  width: 140px;
  height: 100px;
  margin: 0 auto;
  position: relative;
}

.roof-top {
  width: 0;
  height: 0;
  border-left: 70px solid transparent;
  border-right: 70px solid transparent;
  border-bottom: 50px solid rgba(255, 255, 255, 0.3);
  margin: 0 auto;
}

.roof-body {
  width: 120px;
  height: 50px;
  background: rgba(255, 255, 255, 0.2);
  margin: 0 auto;
  border-radius: 0 0 8px 8px;
  position: relative;
}

.roof-window {
  width: 30px;
  height: 30px;
  background: rgba(255, 255, 255, 0.4);
  border-radius: 4px;
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
}

/* ===== SECTION HEADERS ===== */
section {
  padding: 100px 0;
  position: relative;
  z-index: 1;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-tag {
  display: inline-block;
  padding: 6px 16px;
  background: rgba(8, 145, 178, 0.1);
  color: var(--primary);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 16px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.section-title {
  font-size: clamp(30px, 4vw, 44px);
  font-weight: 800;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.section-subtitle {
  font-size: 17px;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
}

/* ===== SERVICES (BENTO GRID) ===== */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 20px;
}

.bento-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.bento-large {
  grid-column: span 1;
  grid-row: span 2;
  background: linear-gradient(135deg, #0891b2, #0e7490);
  color: white;
  border: none;
}

.bento-large h3 {
  color: white;
}

.bento-large p {
  color: rgba(255, 255, 255, 0.9);
}

.bento-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  border-color: var(--primary);
}

.bento-large:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}

.bento-icon {
  font-size: 36px;
  margin-bottom: 20px;
}

.bento-card h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

.bento-card p {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.6;
}

.bento-features {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 16px;
}

.bento-features span {
  padding: 4px 12px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 100px;
  font-size: 12px;
  color: white;
}

/* ===== STATS SECTION ===== */
.stats-section {
  background: var(--text-dark);
  border-radius: var(--radius-lg);
  margin: 0 24px;
  padding: 60px 40px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
}

.stat-card {
  text-align: center;
  color: white;
}

.stat-number {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 54px;
  font-weight: 800;
  background: linear-gradient(135deg, var(--primary-light), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 10px;
}

.stat-number::after {
  content: '+';
}

.stat-label {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ===== PROCESS TIMELINE ===== */
.timeline-horizontal {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

.timeline-step {
  flex: 1;
  min-width: 180px;
  max-width: 220px;
  text-align: center;
  position: relative;
}

.step-number {
  width: 60px;
  height: 60px;
  margin: 0 auto 16px;
  background: white;
  border: 2px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 20px;
  font-weight: 800;
  color: var(--primary);
  transition: var(--transition);
}

.timeline-step:hover .step-number {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
  transform: scale(1.1);
}

.step-content h3 {
  font-size: 17px;
  margin-bottom: 6px;
}

.step-content p {
  font-size: 14px;
  color: var(--text-muted);
}

.timeline-connector {
  flex: 0 0 30px;
  height: 2px;
  background: linear-gradient(90deg, var(--border), var(--primary), var(--border));
  margin-top: 30px;
}

/* ===== PORTFOLIO ===== */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.portfolio-card {
  background: var(--surface);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: var(--transition);
}

.portfolio-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
}

.portfolio-visual {
  height: 200px;
  position: relative;
  overflow: hidden;
}

.abstract-a {
  background: 
    linear-gradient(135deg, #0891b2, #22d3ee),
    repeating-linear-gradient(45deg, transparent, transparent 15px, rgba(255,255,255,0.1) 15px, rgba(255,255,255,0.1) 30px);
}

.abstract-b {
  background: 
    linear-gradient(135deg, #f59e0b, #fbbf24),
    radial-gradient(circle at 70% 30%, rgba(255,255,255,0.3) 0%, transparent 50%);
}

.abstract-c {
  background: 
    linear-gradient(135deg, #0e7490, #0891b2),
    repeating-radial-gradient(circle at 50% 50%, transparent 0, transparent 25px, rgba(255,255,255,0.1) 25px, rgba(255,255,255,0.1) 26px);
}

.portfolio-info {
  padding: 24px;
}

.portfolio-info h3 {
  font-size: 18px;
  margin-bottom: 6px;
}

.portfolio-info p {
  font-size: 14px;
  color: var(--text-muted);
}

/* ===== ARTICLE SECTION ===== */
.article-section {
  background: linear-gradient(180deg, var(--bg-alt) 0%, var(--bg) 100%);
  position: relative;
  z-index: 3;
  isolation: isolate;
}

.article-wrapper {
  max-width: 860px;
  margin: 0 auto;
  background: white;
  border-radius: var(--radius-lg);
  padding: 60px 56px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
  position: relative;
  z-index: 4;
}

.article-header {
  text-align: center;
  margin-bottom: 50px;
  padding-bottom: 30px;
  border-bottom: 1px solid var(--border-light);
}

.article-category {
  display: inline-block;
  padding: 6px 16px;
  background: rgba(245, 158, 11, 0.12);
  color: var(--accent-dark);
  border-radius: 100px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.article-title {
  font-size: clamp(26px, 4vw, 38px);
  font-weight: 800;
  margin-bottom: 20px;
  line-height: 1.3;
  letter-spacing: -0.02em;
}

.article-meta {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
  color: var(--text-muted);
  font-size: 14px;
}

.article-content {
  font-size: 17px;
  color: var(--text-body);
  line-height: 1.8;
  position: relative;
  z-index: 5;
}

.article-content p {
  margin-bottom: 20px;
}

.article-heading {
  font-size: clamp(22px, 3vw, 28px);
  font-weight: 800;
  margin: 48px 0 20px;
  color: var(--text-dark);
  position: relative;
  padding-left: 20px;
  letter-spacing: -0.01em;
}

.article-heading::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  bottom: 8px;
  width: 5px;
  background: linear-gradient(180deg, var(--primary), var(--accent));
  border-radius: 4px;
}

.article-content h3 {
  font-size: 20px;
  font-weight: 700;
  margin: 32px 0 16px;
  color: var(--text-dark);
}

.article-content a {
  color: var(--primary);
  border-bottom: 1px dashed var(--primary);
  font-weight: 500;
}

.article-content a:hover {
  color: var(--primary-dark);
  border-bottom-style: solid;
}

.article-list {
  list-style: none;
  margin: 20px 0 24px;
  padding-left: 0;
}

.article-list li {
  padding: 14px 18px;
  margin-bottom: 8px;
  background: var(--bg-alt);
  border-left: 4px solid var(--primary);
  border-radius: 8px;
  color: var(--text-body);
}

.article-intro {
  padding: 30px;
  background: linear-gradient(135deg, rgba(8, 145, 178, 0.08), rgba(245, 158, 11, 0.06));
  border-radius: var(--radius);
  margin-bottom: 40px;
  border: 1px solid var(--border);
  font-size: 18px;
  line-height: 1.8;
}

.article-intro p {
  margin: 0;
  color: var(--text-body);
}

/* Callout, Tip, Warning Boxes */
.callout-box, .tip-box, .warning-box {
  padding: 24px;
  margin: 30px 0;
  border-radius: var(--radius);
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.callout-box {
  background: linear-gradient(135deg, rgba(8, 145, 178, 0.08), rgba(34, 211, 238, 0.05));
  border-left: 4px solid var(--primary);
}

.tip-box {
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.08), rgba(34, 197, 94, 0.04));
  border-left: 4px solid #22c55e;
}

.warning-box {
  background: linear-gradient(135deg, rgba(239, 68, 68, 0.08), rgba(239, 68, 68, 0.04));
  border-left: 4px solid #ef4444;
}

.callout-icon {
  font-size: 28px;
  flex-shrink: 0;
}

.callout-content h4, .tip-box h4, .warning-box h4 {
  margin-bottom: 8px;
  font-size: 17px;
  color: var(--text-dark);
}

.quote-box {
  background: linear-gradient(135deg, rgba(168, 85, 247, 0.08), rgba(168, 85, 247, 0.04));
  border-left: 4px solid #a855f7;
  font-style: italic;
}

.quote-author {
  display: block;
  margin-top: 12px;
  font-size: 14px;
  color: var(--text-muted);
  font-style: normal;
}

/* Comparison Table */
.comparison-table {
  margin: 30px 0;
  overflow-x: auto;
}

.comparison-table table {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
}

.comparison-table th {
  background: var(--text-dark);
  color: white;
  padding: 16px;
  text-align: left;
  font-weight: 600;
  font-family: 'Plus Jakarta Sans', sans-serif;
}

.comparison-table td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--border-light);
  color: var(--text-body);
}

.comparison-table tr:last-child td {
  border-bottom: none;
}

.comparison-table tr:hover {
  background: var(--bg-alt);
}

/* Stats Box */
.stats-box {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 30px 0;
}

.stat-item {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 22px;
  text-align: center;
}

.stat-big {
  display: block;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 26px;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 4px;
}

.stat-small {
  font-size: 13px;
  color: var(--text-muted);
}

/* Checklist */
.checklist-box {
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.08), rgba(34, 197, 94, 0.03));
  border: 1px solid rgba(34, 197, 94, 0.2);
  border-radius: var(--radius);
  padding: 24px;
  margin: 30px 0;
}

.checklist-box h4 {
  color: #16a34a;
  margin-bottom: 14px;
  font-size: 17px;
}

.checklist-box ul {
  list-style: none;
  padding: 0;
}

.checklist-box li {
  padding: 8px 0;
  color: var(--text-body);
}

/* Feature Cards */
.feature-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 30px 0;
}

.feature-card {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px;
  transition: var(--transition);
}

.feature-card:hover {
  transform: translateY(-4px);
  border-color: var(--primary);
  box-shadow: var(--shadow-md);
}

.feature-card h4 {
  color: var(--primary);
  margin-bottom: 10px;
  font-size: 16px;
}

.feature-card p {
  color: var(--text-muted);
  font-size: 14px;
  margin: 0;
}

/* Pros and Cons */
.pros-cons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 30px 0;
}

.pros, .cons {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
}

.pros {
  border-top: 4px solid #22c55e;
}

.cons {
  border-top: 4px solid #ef4444;
}

.pros h4, .cons h4 {
  margin-bottom: 14px;
  font-size: 16px;
}

.pros ul, .cons ul {
  list-style: none;
  padding: 0;
}

.pros li, .cons li {
  padding: 8px 0;
  color: var(--text-body);
  font-size: 14px;
}

/* Info Card */
.info-card {
  padding: 30px;
  margin: 30px 0;
  background: linear-gradient(135deg, rgba(8, 145, 178, 0.06), rgba(245, 158, 11, 0.04));
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.info-card h3 {
  color: var(--primary);
  margin-bottom: 16px;
  font-size: 19px;
}

.info-card ul {
  list-style: none;
  padding: 0;
}

.info-card li {
  padding: 8px 0;
  color: var(--text-body);
}

/* ===== FAQ SECTION ===== */
.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  margin-bottom: 12px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: var(--transition);
}

.faq-item:hover {
  border-color: var(--primary);
}

.faq-question {
  width: 100%;
  padding: 20px 24px;
  background: transparent;
  color: var(--text-dark);
  font-size: 16px;
  font-weight: 600;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  transition: var(--transition);
  font-family: 'Plus Jakarta Sans', sans-serif;
}

.faq-question:hover {
  color: var(--primary);
}

.faq-toggle {
  font-size: 24px;
  font-weight: 300;
  transition: var(--transition);
  color: var(--primary);
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(8, 145, 178, 0.1);
}

.faq-item.active .faq-toggle {
  transform: rotate(45deg);
  background: var(--primary);
  color: white;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.active .faq-answer {
  padding: 0 24px 24px;
  max-height: 500px;
}

.faq-answer p {
  color: var(--text-body);
  line-height: 1.7;
}

/* ===== TESTIMONIALS ===== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial-card {
  background: var(--surface);
  padding: 32px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: var(--transition);
  position: relative;
}

.testimonial-quote {
  position: absolute;
  top: 16px;
  right: 24px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 60px;
  color: var(--primary);
  opacity: 0.15;
  line-height: 1;
  font-weight: 800;
}

.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  border-color: var(--primary);
}

.testimonial-rating {
  color: var(--accent);
  margin-bottom: 16px;
  font-size: 18px;
}

.testimonial-text {
  color: var(--text-body);
  font-size: 15px;
  margin-bottom: 24px;
  line-height: 1.7;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.author-initials {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: white;
  font-size: 16px;
}

.author-info strong {
  display: block;
  color: var(--text-dark);
  margin-bottom: 2px;
}

.author-info span {
  font-size: 13px;
  color: var(--text-muted);
}

/* ===== CONTACT SECTION ===== */
.contact-section {
  background: var(--bg-alt);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  max-width: 1100px;
  margin: 0 auto;
}

.contact-info, .contact-form-wrapper {
  background: var(--surface);
  padding: 40px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

.contact-info h3, .contact-form-wrapper h3 {
  font-size: 22px;
  margin-bottom: 24px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 18px;
  padding: 14px;
  background: var(--bg-alt);
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.contact-item:hover {
  background: white;
  box-shadow: var(--shadow-sm);
  transform: translateX(4px);
}

.contact-icon {
  font-size: 22px;
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background: rgba(8, 145, 178, 0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-details strong {
  display: block;
  color: var(--primary);
  margin-bottom: 4px;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.contact-details a, .contact-details span {
  color: var(--text-body);
  font-size: 15px;
}

.contact-details a:hover {
  color: var(--primary);
}

.hours-list div {
  padding: 4px 0;
  color: var(--text-body);
  font-size: 14px;
}

.hours-list span {
  color: var(--text-muted);
  margin-right: 8px;
  display: inline-block;
  min-width: 80px;
}

.contact-cta-buttons {
  display: flex;
  gap: 12px;
  margin-top: 24px;
  flex-wrap: wrap;
}

.contact-cta-buttons .btn {
  flex: 1;
  min-width: 140px;
}

/* Form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 16px;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 10px;
  color: var(--text-dark);
  font-size: 15px;
  font-family: inherit;
  transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  background: white;
  box-shadow: 0 0 0 3px rgba(8, 145, 178, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.form-group select option {
  background: white;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--text-dark);
  color: white;
  padding: 60px 0 20px;
  position: relative;
  z-index: 1;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.footer .logo-mark {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
}

.footer .logo-text {
  color: white;
}

.footer-about {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 20px;
}

.social-icons {
  display: flex;
  gap: 10px;
}

.social-icon {
  width: 38px;
  height: 38px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 13px;
  transition: var(--transition);
  color: white;
}

.social-icon:hover {
  background: var(--primary);
  border-color: var(--primary);
  transform: translateY(-3px);
}

.footer-col h4 {
  font-size: 15px;
  margin-bottom: 18px;
  color: white;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-links, .footer-contact {
  list-style: none;
  padding: 0;
}

.footer-links li, .footer-contact li {
  padding: 8px 0;
}

.footer-links a, .footer-contact a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  transition: var(--transition);
}

.footer-links a:hover, .footer-contact a:hover {
  color: var(--primary-light);
  padding-left: 4px;
}

.footer-contact li {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
}

.footer-maps {
  color: var(--primary-light) !important;
  font-weight: 600;
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.6);
  font-size: 13px;
}

/* ===== REVEAL ANIMATION ===== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Safety net for article */
.article-wrapper.reveal {
  opacity: 1 !important;
  transform: none !important;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 968px) {
  .mobile-toggle {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 320px;
    height: 100vh;
    background: white;
    flex-direction: column;
    padding: 100px 32px 32px;
    gap: 24px;
    transition: right 0.4s ease;
    border-left: 1px solid var(--border);
    box-shadow: var(--shadow-lg);
  }

  .nav-links.active {
    right: 0;
  }

  .nav-cta {
    display: none;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-visual {
    height: 400px;
    max-width: 500px;
    margin: 0 auto;
  }

  .bento-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .bento-large {
    grid-column: span 2;
    grid-row: span 1;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .timeline-horizontal {
    flex-direction: column;
    align-items: stretch;
  }

  .timeline-connector {
    display: none;
  }

  .timeline-step {
    max-width: 100%;
    text-align: left;
    display: flex;
    align-items: center;
    gap: 20px;
  }

  .step-number {
    margin: 0;
  }

  .portfolio-grid {
    grid-template-columns: 1fr;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }

  .pros-cons {
    grid-template-columns: 1fr;
  }

  .feature-cards {
    grid-template-columns: 1fr;
  }

  .stats-box {
    grid-template-columns: 1fr;
  }

  .article-wrapper {
    padding: 40px 28px;
  }

  .contact-info, .contact-form-wrapper {
    padding: 28px;
  }
}

@media (max-width: 640px) {
  section {
    padding: 70px 0;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }

  .bento-grid {
    grid-template-columns: 1fr;
  }

  .bento-large {
    grid-column: span 1;
  }

  .hero {
    padding-top: 110px;
  }

  .stats-section {
    margin: 0 12px;
    padding: 40px 24px;
    border-radius: var(--radius);
  }

  .callout-box, .tip-box, .warning-box {
    flex-direction: column;
    text-align: center;
  }

  .trust-row {
    gap: 16px;
  }

  .trust-divider {
    display: none;
  }

  .hero-card.card-1 {
    top: 10px;
    left: 10px;
  }

  .hero-card.card-2 {
    top: 90px;
    right: 10px;
  }

  .hero-card.card-3 {
    bottom: 20px;
    left: 20px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  .article-wrapper {
    padding: 32px 20px;
    border-radius: var(--radius);
  }

  .hero-cta {
    flex-direction: column;
  }

  .hero-cta .btn {
    width: 100%;
  }
}

/* Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: var(--bg);
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--primary), var(--primary-dark));
  border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--primary);
}