/*
Theme Name: Ayoub Assif
Theme URI: https://www.fiverr.com/s/qDKLr6g
Author: Ayoub Assif
Author URI: https://www.fiverr.com/s/qDKLr6g
Description: Premium personal brand theme for digital launch and automation expert. Dark futuristic design with high-converting landing page layout.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: ayoub-assif
Tags: dark, one-page, personal-brand, business, custom-background, custom-logo, custom-menu, full-width-template
*/

/* ============================================================
   Import Google Fonts
   ============================================================ */
@import url('https://fonts.googleapis.com/css2?family=Syne:wght@400;600;700;800&family=DM+Sans:ital,wght@0,300;0,400;0,500;0,600;1,300&family=JetBrains+Mono:wght@400;500&display=swap');

/* ============================================================
   AYOUB ASSIF WordPress Theme — All styles below
   (Same design as static version, adapted for WordPress)
   ============================================================ */

:root {
  --bg-primary: #050810;
  --bg-secondary: #080d1a;
  --bg-card: #0c1120;
  --bg-card-hover: #111827;
  --accent-blue: #3b82f6;
  --accent-cyan: #06b6d4;
  --gradient-main: linear-gradient(135deg, #3b82f6 0%, #06b6d4 100%);
  --gradient-hero: linear-gradient(135deg, #1e3a5f 0%, #0c1a2e 50%, #050810 100%);
  --text-primary: #f0f6ff;
  --text-secondary: #8ba3c7;
  --text-muted: #4a6080;
  --border: rgba(59, 130, 246, 0.15);
  --border-hover: rgba(59, 130, 246, 0.4);
  --font-display: 'Syne', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow-glow: 0 0 40px rgba(59, 130, 246, 0.2);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background-color: var(--bg-primary);
  color: var(--text-primary);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; padding: 0; margin: 0; }

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-primary); }
::-webkit-scrollbar-thumb { background: var(--accent-blue); border-radius: 3px; }

/* WordPress core alignment */
.alignleft { float: left; margin: 0 1.5rem 1rem 0; }
.alignright { float: right; margin: 0 0 1rem 1.5rem; }
.aligncenter { display: block; margin: 0 auto 1rem; }
.wp-caption { max-width: 100%; }
.wp-caption-text { font-size: 0.85rem; color: var(--text-muted); margin-top: 0.5rem; }
.screen-reader-text { position: absolute; left: -9999px; }

/* Navigation */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1.2rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(5, 8, 16, 0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: all 0.3s ease;
}
.nav.scrolled { padding: 0.8rem 2rem; background: rgba(5, 8, 16, 0.95); }
.nav-logo {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 800;
  background: var(--gradient-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.nav-menu { display: flex; gap: 2rem; align-items: center; list-style: none; }
.nav-menu li a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: color 0.2s;
}
.nav-menu li a:hover { color: var(--text-primary); }
.nav-cta-item a {
  background: var(--gradient-main) !important;
  color: #fff !important;
  -webkit-text-fill-color: #fff !important;
  padding: 0.5rem 1.2rem;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.85rem;
}
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; background: none; border: none; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--text-primary); border-radius: 2px; transition: all 0.3s; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  text-decoration: none;
}
.btn-primary {
  background: var(--gradient-main);
  color: #fff;
  box-shadow: 0 4px 24px rgba(59, 130, 246, 0.4);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(59, 130, 246, 0.5); color: #fff; }
.btn-outline { background: transparent; color: var(--accent-blue); border: 1.5px solid var(--accent-blue); }
.btn-outline:hover { background: rgba(59, 130, 246, 0.1); transform: translateY(-2px); }
.btn-lg { padding: 1rem 2.5rem; font-size: 1.05rem; }
.btn-white { background: white; color: var(--accent-blue); font-weight: 700; }
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.2); }

/* Layout */
.section { position: relative; z-index: 1; padding: 6rem 2rem; }
.container { max-width: 1200px; margin: 0 auto; }
.section-label {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--accent-cyan);
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 0.75rem;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -1px;
  margin-bottom: 1rem;
}
.section-subtitle { font-size: 1.1rem; color: var(--text-secondary); max-width: 600px; line-height: 1.7; }
.text-gradient { background: var(--gradient-main); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.text-center { text-align: center; }
.text-center .section-subtitle { margin: 0 auto; }
.grid-bg {
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(59,130,246,0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(59,130,246,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

/* Hero */
.hero { min-height: 100vh; display: flex; align-items: center; padding-top: 5rem; background: var(--gradient-hero); position: relative; overflow: hidden; }
.hero::after { content: ''; position: absolute; top: -200px; right: -200px; width: 700px; height: 700px; background: radial-gradient(circle, rgba(59,130,246,0.12) 0%, transparent 70%); pointer-events: none; }
.hero-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; position: relative; z-index: 2; }
.hero-badge { display: inline-flex; align-items: center; gap: 0.5rem; background: rgba(59,130,246,0.12); border: 1px solid rgba(59,130,246,0.3); border-radius: 50px; padding: 0.4rem 1rem; font-size: 0.8rem; font-weight: 500; color: var(--accent-blue); margin-bottom: 1.5rem; font-family: var(--font-mono); }
.hero-badge-dot { width: 6px; height: 6px; background: var(--accent-cyan); border-radius: 50%; animation: pulse 2s infinite; }
@keyframes pulse { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.5; transform: scale(1.3); } }
.hero-title { font-family: var(--font-display); font-size: clamp(2.8rem, 6vw, 4.5rem); font-weight: 800; line-height: 1.05; letter-spacing: -2px; margin-bottom: 1.5rem; }
.hero-title .line { display: block; }
.hero-subtitle { font-size: 1.15rem; color: var(--text-secondary); line-height: 1.8; margin-bottom: 2.5rem; max-width: 520px; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; align-items: center; }
.hero-stats { display: flex; gap: 2rem; margin-top: 3rem; padding-top: 2rem; border-top: 1px solid var(--border); }
.stat-number { font-family: var(--font-display); font-size: 2rem; font-weight: 800; background: var(--gradient-main); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; line-height: 1; }
.stat-label { font-size: 0.8rem; color: var(--text-muted); font-weight: 500; margin-top: 0.2rem; }
.hero-image-wrap { position: relative; display: flex; justify-content: center; }
.hero-image-glow { position: absolute; inset: -20px; background: radial-gradient(circle, rgba(59,130,246,0.2) 0%, transparent 70%); border-radius: 50%; animation: glow-pulse 3s ease-in-out infinite; }
@keyframes glow-pulse { 0%, 100% { transform: scale(1); opacity: 0.7; } 50% { transform: scale(1.05); opacity: 1; } }
.hero-image-ring { position: absolute; inset: -10px; border: 1px solid rgba(59,130,246,0.3); border-radius: 50%; animation: rotate 20s linear infinite; }
.hero-image-ring::before { content: ''; position: absolute; top: -3px; left: 50%; width: 6px; height: 6px; background: var(--accent-cyan); border-radius: 50%; transform: translateX(-50%); }
@keyframes rotate { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
.hero-image { width: 380px; height: 380px; border-radius: 50%; object-fit: cover; object-position: center top; border: 3px solid rgba(59,130,246,0.3); position: relative; z-index: 1; }
.hero-platforms { position: absolute; bottom: 0; left: 50%; transform: translateX(-50%); display: flex; gap: 0.5rem; }
.platform-tag { background: rgba(5,8,16,0.9); border: 1px solid var(--border); border-radius: 6px; padding: 0.3rem 0.6rem; font-size: 0.7rem; font-family: var(--font-mono); color: var(--accent-cyan); white-space: nowrap; }

/* Marquee */
.marquee-section { padding: 2rem 0; background: rgba(59,130,246,0.03); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); overflow: hidden; position: relative; z-index: 1; }
.marquee-track { display: flex; gap: 3rem; animation: marquee 30s linear infinite; width: max-content; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.marquee-item { display: flex; align-items: center; gap: 0.5rem; font-family: var(--font-mono); font-size: 0.85rem; color: var(--text-muted); white-space: nowrap; padding: 0.5rem 1.5rem; }
.marquee-item .dot { color: var(--accent-cyan); font-size: 1.2rem; }

/* Authority */
.authority { background: var(--bg-secondary); }
.authority-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.authority-cards { display: flex; flex-direction: column; gap: 1rem; }
.authority-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.5rem; display: flex; gap: 1rem; align-items: flex-start; transition: all 0.3s ease; position: relative; overflow: hidden; }
.authority-card::before { content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 3px; background: var(--gradient-main); border-radius: 3px; }
.authority-card:hover { border-color: var(--border-hover); background: var(--bg-card-hover); transform: translateX(4px); }
.authority-icon { font-size: 1.8rem; flex-shrink: 0; width: 48px; height: 48px; display: flex; align-items: center; justify-content: center; background: rgba(59,130,246,0.1); border-radius: 10px; }
.authority-card h3 { font-family: var(--font-display); font-size: 1rem; font-weight: 700; margin-bottom: 0.3rem; }
.authority-card p { font-size: 0.9rem; color: var(--text-secondary); line-height: 1.6; }

/* Services */
.services { background: var(--bg-primary); }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 3rem; }
.service-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 2rem; transition: all 0.3s ease; position: relative; overflow: hidden; }
.service-card::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 2px; background: var(--gradient-main); transform: scaleX(0); transition: transform 0.3s ease; }
.service-card:hover::after { transform: scaleX(1); }
.service-card:hover { border-color: var(--border-hover); transform: translateY(-4px); box-shadow: var(--shadow-glow); }
.service-number { font-family: var(--font-mono); font-size: 0.7rem; color: var(--text-muted); margin-bottom: 1rem; }
.service-icon { font-size: 2.5rem; margin-bottom: 1rem; display: block; }
.service-card h3 { font-family: var(--font-display); font-size: 1.15rem; font-weight: 700; margin-bottom: 0.75rem; line-height: 1.3; }
.service-card p { font-size: 0.9rem; color: var(--text-secondary); line-height: 1.7; margin-bottom: 1.5rem; }
.service-tags { display: flex; flex-wrap: wrap; gap: 0.4rem; }
.tag { font-family: var(--font-mono); font-size: 0.7rem; padding: 0.2rem 0.6rem; background: rgba(59,130,246,0.1); border: 1px solid rgba(59,130,246,0.2); border-radius: 4px; color: var(--accent-blue); }
.service-link { display: inline-flex; align-items: center; gap: 0.4rem; font-size: 0.85rem; color: var(--accent-blue); font-weight: 600; margin-top: 1rem; transition: gap 0.2s; }
.service-link:hover { gap: 0.7rem; }

/* Steps */
.how-it-works { background: var(--bg-secondary); }
.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; margin-top: 3rem; }
.step-card { text-align: center; padding: 2rem 1.5rem; background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-lg); transition: all 0.3s; }
.step-card:hover { border-color: var(--border-hover); transform: translateY(-4px); }
.step-number { width: 56px; height: 56px; background: var(--gradient-main); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-size: 1.2rem; font-weight: 800; color: white; margin: 0 auto 1.5rem; }
.step-card h3 { font-family: var(--font-display); font-size: 1.1rem; font-weight: 700; margin-bottom: 0.75rem; }
.step-card p { font-size: 0.9rem; color: var(--text-secondary); line-height: 1.6; }

/* Benefits */
.benefits { background: var(--bg-primary); }
.benefits-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.benefits-list { display: flex; flex-direction: column; gap: 1.5rem; margin-top: 2rem; }
.benefit-item { display: flex; gap: 1.2rem; align-items: flex-start; }
.benefit-icon { width: 44px; height: 44px; background: rgba(59,130,246,0.1); border: 1px solid rgba(59,130,246,0.2); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; flex-shrink: 0; }
.benefit-item h4 { font-family: var(--font-display); font-size: 1rem; font-weight: 700; margin-bottom: 0.3rem; }
.benefit-item p { font-size: 0.9rem; color: var(--text-secondary); line-height: 1.6; }
.system-diagram { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 2rem; }
.system-diagram-title { font-family: var(--font-mono); font-size: 0.75rem; color: var(--accent-cyan); text-transform: uppercase; letter-spacing: 2px; margin-bottom: 1.5rem; }
.flow-nodes { display: flex; flex-direction: column; gap: 0; }
.flow-node { display: flex; align-items: center; gap: 1rem; padding: 1rem; background: rgba(59,130,246,0.06); border: 1px solid var(--border); border-radius: var(--radius); }
.flow-node-icon { font-size: 1.4rem; width: 40px; text-align: center; }
.flow-node-text strong { font-family: var(--font-display); font-size: 0.95rem; font-weight: 700; display: block; }
.flow-node-text span { font-size: 0.8rem; color: var(--text-muted); }
.flow-arrow { text-align: center; padding: 0.4rem 0; color: var(--accent-blue); font-size: 1.2rem; }
.flow-node-badge { margin-left: auto; font-family: var(--font-mono); font-size: 0.65rem; padding: 0.2rem 0.5rem; background: rgba(6,182,212,0.1); border: 1px solid rgba(6,182,212,0.3); border-radius: 4px; color: var(--accent-cyan); }

/* Future-proof */
.future-proof { background: linear-gradient(135deg, #060c1a 0%, #050810 100%); position: relative; overflow: hidden; }
.future-proof::before { content: ''; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 800px; height: 800px; background: radial-gradient(circle, rgba(59,130,246,0.07) 0%, transparent 70%); pointer-events: none; }
.future-card { background: var(--bg-card); border: 1px solid rgba(59,130,246,0.2); border-radius: var(--radius-lg); padding: 3rem; max-width: 800px; margin: 3rem auto 0; position: relative; z-index: 1; }
.future-cycle { display: grid; grid-template-columns: repeat(4, 1fr); margin-top: 2rem; border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.cycle-item { padding: 1.5rem 1rem; text-align: center; border-right: 1px solid var(--border); position: relative; }
.cycle-item:last-child { border-right: none; }
.cycle-item::after { content: '→'; position: absolute; right: -0.6rem; top: 50%; transform: translateY(-50%); color: var(--accent-blue); font-size: 0.9rem; z-index: 1; }
.cycle-item:last-child::after { display: none; }
.cycle-icon { font-size: 2rem; margin-bottom: 0.5rem; }
.cycle-label { font-family: var(--font-display); font-size: 0.9rem; font-weight: 700; margin-bottom: 0.3rem; }
.cycle-sub { font-size: 0.75rem; color: var(--text-muted); }

/* Testimonials */
.testimonials { background: var(--bg-secondary); }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 3rem; }
.testimonial-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 2rem; transition: all 0.3s; }
.testimonial-card:hover { border-color: var(--border-hover); transform: translateY(-3px); }
.stars { color: #fbbf24; font-size: 1rem; margin-bottom: 1rem; letter-spacing: 2px; }
.testimonial-text { font-size: 0.95rem; color: var(--text-secondary); line-height: 1.8; margin-bottom: 1.5rem; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 0.75rem; }
.author-avatar { width: 42px; height: 42px; background: var(--gradient-main); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-weight: 800; font-size: 1rem; color: white; }
.author-name { font-weight: 600; font-size: 0.9rem; }
.author-role { font-size: 0.78rem; color: var(--text-muted); }

/* FAQ */
.faq { background: var(--bg-primary); }
.faq-list { max-width: 800px; margin: 3rem auto 0; display: flex; flex-direction: column; gap: 1rem; }
.faq-item { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; transition: border-color 0.2s; }
.faq-item.open { border-color: var(--border-hover); }
.faq-question { padding: 1.5rem; display: flex; align-items: center; justify-content: space-between; cursor: pointer; gap: 1rem; }
.faq-question h3 { font-family: var(--font-display); font-size: 1rem; font-weight: 700; }
.faq-icon { font-size: 1.2rem; color: var(--accent-blue); flex-shrink: 0; transition: transform 0.3s; }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-item.open .faq-answer { max-height: 300px; }
.faq-answer-inner { padding: 0 1.5rem 1.5rem; font-size: 0.95rem; color: var(--text-secondary); line-height: 1.8; }

/* CTA Banner */
.cta-banner { background: var(--gradient-main); padding: 4rem 2rem; text-align: center; position: relative; overflow: hidden; z-index: 1; }
.cta-banner h2 { font-family: var(--font-display); font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 800; color: white; margin-bottom: 1rem; position: relative; z-index: 1; }
.cta-banner p { color: rgba(255,255,255,0.85); font-size: 1.1rem; margin-bottom: 2rem; position: relative; z-index: 1; }

/* Final CTA */
.final-cta { background: var(--bg-secondary); text-align: center; padding: 8rem 2rem; position: relative; overflow: hidden; }
.final-cta::before { content: ''; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 600px; height: 600px; background: radial-gradient(circle, rgba(59,130,246,0.1) 0%, transparent 70%); pointer-events: none; }
.final-cta-inner { position: relative; z-index: 1; }
.final-cta h2 { font-family: var(--font-display); font-size: clamp(2.5rem, 6vw, 4rem); font-weight: 800; letter-spacing: -2px; margin-bottom: 1.5rem; line-height: 1.1; }
.final-cta p { font-size: 1.15rem; color: var(--text-secondary); max-width: 600px; margin: 0 auto 3rem; line-height: 1.7; }
.final-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.guarantee-note { margin-top: 1.5rem; font-size: 0.85rem; color: var(--text-muted); display: flex; align-items: center; justify-content: center; gap: 0.5rem; }

/* Footer */
.site-footer { background: var(--bg-primary); border-top: 1px solid var(--border); padding: 3rem 2rem; position: relative; z-index: 1; }
.footer-inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem; }
.footer-logo { font-family: var(--font-display); font-size: 1.2rem; font-weight: 800; background: var(--gradient-main); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.footer-tagline { font-size: 0.8rem; color: var(--text-muted); margin-top: 0.3rem; }
.footer-nav { display: flex; gap: 1.5rem; align-items: center; }
.footer-nav a { font-size: 0.85rem; color: var(--text-muted); transition: color 0.2s; }
.footer-nav a:hover { color: var(--accent-blue); }
.footer-copy { font-size: 0.8rem; color: var(--text-muted); text-align: center; margin-top: 2rem; }

/* Animations */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* Responsive */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .future-cycle { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .nav-menu { display: none; }
  .nav-menu.open { display: flex; flex-direction: column; position: fixed; top: 65px; left: 0; right: 0; background: rgba(5,8,16,0.98); padding: 2rem; gap: 1.5rem; border-bottom: 1px solid var(--border); }
  .hamburger { display: flex; }
  .hero-inner { grid-template-columns: 1fr; text-align: center; gap: 3rem; }
  .hero-image { width: 260px; height: 260px; }
  .hero-actions { justify-content: center; }
  .hero-stats { justify-content: center; }
  .authority-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr 1fr; }
  .benefits-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; text-align: center; }
  .hero-platforms { position: static; transform: none; margin-top: 1rem; }
  .hero-image-wrap { flex-direction: column; align-items: center; }
}
@media (max-width: 480px) {
  .section { padding: 4rem 1.2rem; }
  .steps-grid { grid-template-columns: 1fr; }
  .future-cycle { grid-template-columns: 1fr 1fr; }
}
