/* ============================================
   AMO COPRO ONLINE — V4 Bento Grid System
   Ultra-Modern, Tech-Forward, Bold layout
   ============================================ */

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

/* ── Properties ── */
:root {
  /* Colors - Ultra Modern High Contrast */
  --bg-color: #F8F9FA;
  --bg-card: #FFFFFF;
  --bg-card-dark: #000000;
  
  --text-main: #000000;
  --text-muted: #6B7280;
  --text-light: #9CA3AF;
  
  --accent: #00DB80; /* Electric Emerald */
  --accent-hover: #00E887;
  --accent-light: rgba(0, 219, 128, 0.1);
  --accent-text: #009959;
  
  --border-color: rgba(0, 0, 0, 0.06);
  --border-white: rgba(255, 255, 255, 0.1);

  /* Typography */
  --font-sans: 'Inter', -apple-system, sans-serif;
  
  /* Radii - Big smooth corners */
  --radius-xs: 8px;
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 32px;
  --radius-xl: 48px;
  --radius-pill: 9999px;

  /* Spacing */
  --space-xs: 0.5rem;   /* 8px */
  --space-sm: 1rem;     /* 16px */
  --space-md: 1.5rem;   /* 24px */
  --space-lg: 2rem;     /* 32px */
  --space-xl: 3rem;     /* 48px */
  --space-2xl: 4rem;    /* 64px */
  --space-3xl: 6rem;    /* 96px */
  --space-4xl: 8rem;    /* 128px */

  /* Shadows - Minimalist */
  --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.03);
  --shadow-hover: 0 12px 48px rgba(0, 0, 0, 0.08);

  --container-max: 1300px;
  --nav-height: 80px;
  --topbar-height: 0px; /* Removed topbar for cleaner look */
}

/* ── Reset ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; -webkit-font-smoothing: antialiased; }
body { font-family: var(--font-sans); color: var(--text-main); background: var(--bg-color); line-height: 1.6; letter-spacing: -0.01em; overflow-x: hidden; }
img { max-width: 100%; height: auto; display: block; border-radius: inherit; }
a { text-decoration: none; color: inherit; transition: 0.2s ease; }
ul { list-style: none; }
button { border: none; background: none; cursor: pointer; font-family: inherit; }

/* ── Utilities ── */
.container { width: 100%; max-width: var(--container-max); margin: 0 auto; padding: 0 var(--space-md); }
section { padding: var(--space-3xl) 0; }
.text-gradient { background: linear-gradient(135deg, #000000 0%, #4B5563 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.badge { display: inline-flex; align-items: center; gap: 8px; padding: 6px 16px; border-radius: var(--radius-pill); background: var(--border-color); color: var(--text-main); font-weight: 600; font-size: 0.85rem; letter-spacing: -0.01em; margin-bottom: var(--space-md); }

/* ── Typography (Bento uses massive headers) ── */
h1, h2, h3, h4 { font-weight: 700; letter-spacing: -0.04em; line-height: 1.05; }
h1 { font-size: clamp(3rem, 6vw, 5.5rem); }
h2 { font-size: clamp(2.5rem, 5vw, 4rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2.5rem); letter-spacing: -0.03em; }
h4 { font-size: clamp(1.2rem, 2vw, 1.5rem); letter-spacing: -0.02em; }
p { font-size: 1.1rem; color: var(--text-muted); max-width: 600px; }

/* ── Buttons (Pill shaped, vibrant) ── */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 18px 32px; border-radius: var(--radius-pill); font-weight: 600; font-size: 1rem; letter-spacing: -0.01em; transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1); cursor: pointer; white-space: nowrap; }
.btn--accent { background: var(--accent); color: var(--bg-card-dark); }
.btn--accent:hover { transform: scale(1.02); background: var(--accent-hover); box-shadow: 0 8px 32px rgba(0, 219, 128, 0.25); }
.btn--dark { background: var(--bg-card-dark); color: #fff; }
.btn--dark:hover { transform: scale(1.02); background: #1a1a1a; box-shadow: 0 8px 32px rgba(0,0,0,0.15); }
.btn--outline { border: 1px solid var(--border-color); background: var(--bg-card); color: var(--text-main); }
.btn--outline:hover { border-color: #000; box-shadow: var(--shadow-card); transform: scale(1.02); }
.btn .icon { transition: transform 0.2s; font-size: 1.1em; }
.btn:hover .icon { transform: translateX(4px); }

/* ── Navbar (Floating, Glassmorphism) ── */
.topbar { display: none; } /* Remove topbar completely for the pristine Bento look */
.navbar { position: fixed; top: 0; left: 0; right: 0; height: var(--nav-height); z-index: 1000; transition: transform 0.3s ease; padding: var(--space-sm) 0; }
.navbar .container { display: flex; align-items: center; justify-content: space-between; height: 100%; background: rgba(255, 255, 255, 0.85); backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px); border-radius: var(--radius-pill); padding: 0 var(--space-md); border: 1px solid var(--border-color); box-shadow: var(--shadow-card); }
.navbar.scrolled { padding-top: 12px; }

.navbar-logo { display: flex; align-items: center; gap: var(--space-sm); }
.navbar-logo img { height: 32px; width: auto; }
.logo-name { font-weight: 800; font-size: 1.25rem; letter-spacing: -0.03em; color: var(--text-main); }
.logo-sub { display: none; }

.navbar-links { display: flex; gap: var(--space-lg); align-items: center; }
.navbar-links a { font-weight: 500; font-size: 0.95rem; color: var(--text-muted); padding: var(--space-xs) 0; position: relative; }
.navbar-links a:hover, .navbar-links a.active { color: var(--text-main); }

.navbar-cta { display: flex; gap: var(--space-sm); }
.btn-nav { padding: 12px 24px; font-size: 0.9rem; border-radius: var(--radius-pill); }
.btn-nav--outline { display: none; }
.btn-nav--primary { background: var(--bg-card-dark); color: #fff; font-weight: 600; }
.btn-nav--primary:hover { transform: scale(1.02); }

.mobile-toggle { display: none; flex-direction: column; gap: 4px; z-index: 1001; cursor: pointer; padding: 4px; }
.mobile-toggle span { width: 20px; height: 2px; background: var(--text-main); transition: 0.2s; border-radius: 2px; }

/* ── Bento Grid Basics ── */
.bento-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--space-sm); }
.bento-grid-3 { grid-template-columns: repeat(3, 1fr); }
.bento-grid-2 { grid-template-columns: repeat(2, 1fr); }
.bento-card { background: var(--bg-card); border-radius: var(--radius-lg); padding: var(--space-xl); border: 1px solid var(--border-color); box-shadow: var(--shadow-card); transition: box-shadow 0.3s ease, border-color 0.3s ease; display: flex; flex-direction: column; position: relative; overflow: hidden; }
.bento-card:hover { border-color: rgba(0,0,0,0.12); box-shadow: var(--shadow-hover); }
.bento-card--dark { background: var(--bg-card-dark); color: #fff; }
.bento-card--accent { background: var(--accent); color: var(--bg-card-dark); border: none; }
.bento-card--img { padding: 0; }
.bento-card--img img { width: 100%; height: 100%; object-fit: cover; }

/* Spans */
.span-2 { grid-column: span 2; }
.span-3 { grid-column: span 3; }
.span-4 { grid-column: span 4; }
.row-span-2 { grid-row: span 2; }

/* ── Hero (Bento Style) ── */
.hero, .page-hero { padding-top: calc(var(--nav-height) + var(--space-md)); padding-bottom: var(--space-2xl); position: relative; background: var(--bg-color); min-height: 0; }
.hero-bg, .hero-overlay, .hero-shapes { display: none; } /* Clear out old hero bg, we want clean bento */

.hero-header { text-align: center; max-width: 900px; margin: 0 auto var(--space-2xl); display: flex; flex-direction: column; align-items: center; }
.hero h1 { margin-bottom: var(--space-md); color: var(--text-main); }
.hero h1 span { color: var(--accent-text); }
.hero-description { font-size: 1.25rem; margin-bottom: var(--space-xl); max-width: 700px; }
.hero-actions { display: flex; gap: var(--space-sm); justify-content: center; }

/* Bento Stats inside Hero */
.hero-bento { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--space-sm); margin-top: var(--space-2xl); }
.stat-bento { background: var(--bg-card); border-radius: var(--radius-md); padding: var(--space-lg); text-align: center; border: 1px solid var(--border-color); display: flex; flex-direction: column; justify-content: center; }
.stat-bento .number { font-size: 3.5rem; font-weight: 800; letter-spacing: -0.05em; line-height: 1; margin-bottom: var(--space-xs); display: block; color: var(--text-main); }
.stat-bento .label { font-size: 0.9rem; font-weight: 600; color: var(--text-muted); }

/* ── Services (Bento Grid Layout) ── */
.services-section .section-header { text-align: left; margin: 0; align-items: flex-start; }
.services-grid-wrapper { display: flex; flex-direction: column; gap: var(--space-sm); }

.service-grid-top { display: grid; grid-template-columns: 2.5fr 1.5fr; gap: var(--space-sm); margin-bottom: var(--space-sm); }
.service-grid-bottom { display: grid; grid-template-columns: 1fr 1fr 2fr; gap: var(--space-sm); }

.service-bento { background: var(--bg-card); border-radius: var(--radius-lg); border: 1px solid var(--border-color); padding: var(--space-2xl); display: flex; flex-direction: column; justify-content: space-between; min-height: 380px; position: relative; overflow: hidden; transition: 0.3s; }
.service-bento:hover { transform: scale(0.99); background: #FAFAFA; border-color: #E5E7EB; }

.service-icon { width: 64px; height: 64px; border-radius: var(--radius-sm); border: 1px solid var(--border-color); background: var(--bg-color); display: flex; align-items: center; justify-content: center; font-size: 1.8rem; margin-bottom: auto; }
.service-bento h3 { font-size: 1.6rem; margin-top: var(--space-xl); margin-bottom: var(--space-xs); }
.service-bento p { font-size: 0.95rem; line-height: 1.5; color: var(--text-muted); margin-bottom: var(--space-lg); }
.card-link { font-weight: 600; font-size: 0.9rem; color: var(--text-main); display: inline-flex; align-items: center; gap: 4px; }
.card-link:hover { gap: 8px; }

/* ── Process Timeline (Horizontal Scrolling Bento style) ── */
.process-section { background: var(--bg-card-dark); color: #fff; padding: var(--space-4xl) 0; overflow: hidden; }
.process-section .badge { background: rgba(255,255,255,0.1); color: #fff; border: none; }
.process-section .section-header h2 { color: #fff; }
.process-section .section-header p { color: var(--text-light); }

.steps-container { display: grid; grid-template-columns: repeat(5, 1fr); gap: var(--space-sm); padding-bottom: var(--space-lg); padding-top: var(--space-sm); }
.step-bento { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08); border-radius: var(--radius-md); padding: var(--space-md); position: relative; display: flex; flex-direction: column; justify-content: flex-start; }
.step-number-bento { font-size: 4rem; font-weight: 900; line-height: 1; letter-spacing: -0.05em; color: rgba(255,255,255,0.9); position: absolute; top: 16px; right: 24px; }
.step-bento h4 { font-size: 1.3rem; margin-top: var(--space-xl); margin-bottom: var(--space-sm); color: #fff; }
.step-bento p { font-size: 0.9rem; color: rgba(255,255,255,0.6); }

/* ── Testimonials (Bento Masonry) ── */
.testimonials-section { padding: var(--space-4xl) 0; }
.testi-bento-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-sm); }
.testi-bento { background: var(--bg-card); border-radius: var(--radius-lg); padding: var(--space-xl); border: 1px solid var(--border-color); display: flex; flex-direction: column; justify-content: space-between; }
.testi-bento.highlight { background: var(--accent); color: var(--bg-card-dark); border: none; }
.testi-bento.highlight p { color: var(--bg-card-dark); font-weight: 500; }
.testi-bento.highlight .author-info .role { color: rgba(0,0,0,0.6); }

.quote-icon { font-size: 2rem; font-weight: 900; line-height: 1; margin-bottom: var(--space-md); }
.testi-bento p { font-size: 1.05rem; line-height: 1.6; margin-bottom: var(--space-xl); flex-grow: 1; color: var(--text-main); }
.author-bento { display: flex; align-items: center; gap: var(--space-sm); }
.avatar-bento { width: 44px; height: 44px; border-radius: var(--radius-pill); background: var(--bg-color); border: 1px solid var(--border-color); display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 0.9rem; }
.author-info .name { font-weight: 700; font-size: 0.9rem; display: block; }
.author-info .role { font-size: 0.8rem; color: var(--text-muted); }

/* ── FAQ (Accordion but clean) ── */
.faq-section { background: var(--bg-card); padding: var(--space-4xl) 0; }
.faq-list { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item { background: var(--bg-color); border-radius: var(--radius-sm); transition: 0.2s; overflow: hidden; border: 1px solid transparent; }
.faq-item:hover { border-color: var(--border-color); }
.faq-question { width: 100%; text-align: left; padding: 24px; font-size: 1.1rem; font-weight: 600; display: flex; justify-content: space-between; align-items: center; color: var(--text-main); }
.faq-toggle { width: 32px; height: 32px; border-radius: var(--radius-pill); background: #fff; border: 1px solid var(--border-color); display: flex; align-items: center; justify-content: center; transition: 0.3s; font-size: 1.2rem; }
.faq-item.active .faq-toggle { transform: rotate(45deg); background: var(--bg-card-dark); color: #fff; border-color: var(--bg-card-dark); }
.faq-answer { max-height: 0; padding: 0 24px; color: var(--text-muted); transition: all 0.4s ease; }
.faq-item.active .faq-answer { max-height: 400px; padding-bottom: 24px; }

/* ── CTA Banner (Massive solid color) ── */
.cta-section { padding: var(--space-sm) var(--space-md); }
.cta-bento { background: var(--bg-card-dark); border-radius: var(--radius-xl); padding: var(--space-4xl) var(--space-2xl); text-align: center; color: #fff; display: flex; flex-direction: column; align-items: center; }
.cta-bento h2 { font-size: clamp(2rem, 4vw, 3.5rem); margin-bottom: var(--space-md); color: #fff; max-width: 800px; }
.cta-bento p { color: var(--text-light); font-size: 1.2rem; margin-bottom: var(--space-xl); max-width: 600px; }
.cta-actions { display: flex; gap: var(--space-sm); flex-wrap: wrap; justify-content: center; }

/* ── Trust Badges (Monochrome Grid) ── */
.trust-labels { padding: var(--space-2xl) 0; background: var(--bg-color); }
.trust-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: var(--space-xl); }
.trust-item { display: flex; align-items: center; gap: 8px; font-weight: 700; font-size: 0.85rem; letter-spacing: -0.01em; color: var(--text-muted); opacity: 0.6; transition: 0.2s; }
.trust-item:hover { opacity: 1; color: var(--text-main); }
.trust-item span:first-child { font-size: 1.5rem; }

/* ── Footer ── */
.footer { padding: var(--space-4xl) 0 var(--space-xl); background: var(--bg-color); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: var(--space-3xl); margin-bottom: var(--space-3xl); }
.footer-logo { display: flex; align-items: center; gap: 8px; margin-bottom: var(--space-md); font-weight: 800; font-size: 1.2rem; color: var(--text-main); }
.footer-logo img { height: 32px; }
.footer-brand p { font-size: 0.95rem; color: var(--text-muted); max-width: 320px; }
.footer-col h4 { font-size: 1rem; margin-bottom: var(--space-lg); color: var(--text-main); }
.footer-col ul { display: flex; flex-direction: column; gap: var(--space-sm); }
.footer-col a { color: var(--text-muted); font-size: 0.95rem; font-weight: 500; }
.footer-col a:hover { color: var(--text-main); }
.footer-bottom { border-top: 1px solid var(--border-color); padding-top: var(--space-lg); display: flex; justify-content: space-between; font-size: 0.85rem; color: var(--text-muted); font-weight: 500; }
.footer-bottom-links { display: flex; gap: var(--space-lg); }
.footer-bottom-links a:hover { color: var(--text-main); }

/* ── Inner Pages & Forms (Bento Style) ── */
.page-hero { padding: calc(var(--nav-height) + var(--space-3xl)) 0 var(--space-xl); background: var(--bg-color); text-align: center; }
.page-hero p { margin-left: auto; margin-right: auto; }
.breadcrumb { font-weight: 600; font-size: 0.85rem; color: var(--text-muted); margin-bottom: var(--space-lg); display: flex; justify-content: center; gap: 8px; }
.breadcrumb a:hover { color: var(--text-main); }

.contact-section { padding: var(--space-2xl) var(--space-md); }
.contact-bento-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: var(--space-sm); max-width: var(--container-max); margin: 0 auto; }
.contact-info-panel { background: var(--bg-card); border: 1px solid var(--border-color); border-radius: var(--radius-lg); padding: var(--space-2xl); display: flex; flex-direction: column; gap: var(--space-xl); }
.info-row { display: flex; gap: var(--space-md); }
.info-row .icon { width: 48px; height: 48px; border-radius: var(--radius-sm); border: 1px solid var(--border-color); display: flex; align-items: center; justify-content: center; font-size: 1.2rem; background: var(--bg-color); }
.info-row h4 { font-size: 1.1rem; margin-bottom: 4px; }
.info-row p { font-size: 0.95rem; color: var(--text-muted); }

.contact-form-bento { background: var(--bg-card); border: 1px solid var(--border-color); border-radius: var(--radius-lg); padding: var(--space-2xl); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-md); }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group.full { grid-column: 1 / -1; }
.form-group label { font-size: 0.85rem; font-weight: 600; color: var(--text-main); }
.form-group input, .form-group select, .form-group textarea { width: 100%; padding: 16px; border-radius: var(--radius-xs); border: 1px solid var(--border-color); background: var(--bg-color); font-family: var(--font-sans); font-size: 0.95rem; font-weight: 500; transition: border-color 0.2s, box-shadow 0.2s; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: var(--text-main); background: var(--bg-card); box-shadow: 0 4px 12px rgba(0,0,0,0.05); }
.form-group textarea { height: 160px; resize: vertical; }
.form-submit { margin-top: var(--space-lg); grid-column: 1 / -1; }

/* Content Grid for Inner pages */
.content-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-xl); align-items: center; padding: var(--space-3xl) 0; }
.content-grid.reverse { direction: rtl; }
.content-grid.reverse > * { direction: ltr; }
.content-bento-img { border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--border-color); }
.content-bento-img img { width: 100%; height: 500px; object-fit: cover; }
.content-bento-text h2 { margin-bottom: var(--space-lg); }
.content-bento-text ul { display: flex; flex-direction: column; gap: 12px; margin-top: var(--space-lg); }
.content-bento-text li { display: flex; align-items: flex-start; gap: 12px; font-size: 1rem; font-weight: 500; }
.content-bento-text li::before { content: '✓'; color: var(--accent-text); background: var(--accent-light); width: 24px; height: 24px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 0.85rem; flex-shrink: 0; }

/* Animations */
@keyframes fadeInUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
.animate-on-scroll { opacity: 0; transform: translateY(30px); transition: 0.6s cubic-bezier(0.16, 1, 0.3, 1); }
.animate-on-scroll.visible { opacity: 1; transform: translateY(0); }

/* Floating Elements */
.cookie-banner { position: fixed; bottom: 24px; left: 24px; right: 24px; max-width: 600px; background: var(--bg-card-dark); color: #fff; padding: 24px; border-radius: var(--radius-lg); z-index: 9999; display: flex; align-items: center; justify-content: space-between; gap: 24px; box-shadow: var(--shadow-hover); transform: translateY(150%); transition: 0.5s cubic-bezier(0.16, 1, 0.3, 1); }
.cookie-banner.visible { transform: translateY(0); }
.cookie-banner p { font-size: 0.9rem; margin: 0; color: rgba(255,255,255,0.7); max-width: 400px; }
.cookie-banner a { color: #fff; text-decoration: underline; }
.cookie-banner .btn-cookie { padding: 12px 20px; border-radius: var(--radius-pill); font-weight: 600; font-size: 0.85rem; }
.cookie-banner--accept { background: #fff; color: #000; }
.cookie-banner--reject { background: rgba(255,255,255,0.1); color: #fff; }

.whatsapp-float { position: fixed; bottom: 32px; right: 32px; width: 64px; height: 64px; border-radius: var(--radius-pill); background: var(--bg-card); border: 1px solid var(--border-color); display: flex; align-items: center; justify-content: center; font-size: 2rem; box-shadow: var(--shadow-card); z-index: 999; }
.whatsapp-float:hover { border-color: #25D366; color: #25D366; box-shadow: 0 12px 48px rgba(37, 211, 102, 0.2); transform: translateY(-4px); }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .hero-bento { grid-template-columns: repeat(2, 1fr); }
  .bento-grid { grid-template-columns: repeat(2, 1fr); }
  .bento-grid-3 { grid-template-columns: repeat(2, 1fr); }
  .bento-grid-2 { grid-template-columns: repeat(2, 1fr); }
  .service-grid-top, .service-grid-bottom { grid-template-columns: 1fr; }
  .steps-container { display: flex; overflow-x: auto; scrollbar-width: none; }
  .steps-container::-webkit-scrollbar { display: none; }
  .step-bento { flex: 0 0 300px; padding: var(--space-lg); }
  .testi-bento-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-bento-grid { grid-template-columns: 1fr; }
  .content-grid { grid-template-columns: 1fr; }
  .content-grid.reverse { direction: ltr; }
}

@media (max-width: 768px) {
  :root { --nav-height: 72px; }
  .container { padding: 0 var(--space-sm); }
  
  .navbar .container { border-radius: 0; border: none; border-bottom: 1px solid var(--border-color); }
  .mobile-toggle { display: flex; }
  .mobile-toggle.active span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
  .mobile-toggle.active span:nth-child(2) { opacity: 0; }
  .mobile-toggle.active span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
  
  .navbar-links, .navbar-cta { display: none; }
  
  .navbar-links.active {
    display: flex !important;
    flex-direction: column;
    position: fixed !important;
    top: var(--nav-height);
    left: 0;
    width: 100%;
    height: 100vh;
    padding-bottom: 20vh;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 9999;
    justify-content: center;
    align-items: center;
    gap: var(--space-xl);
    border-top: 1px solid var(--border-color);
  }
  .navbar-links.active a {
    font-size: 1.5rem;
    font-weight: 700;
  }
  
  .hero h1 { font-size: 2.5rem; }
  .hero, .page-hero { padding-top: calc(var(--nav-height) + var(--space-lg)) !important; }
  .hero-bento { grid-template-columns: 1fr !important; }
  
  .bento-grid { grid-template-columns: 1fr !important; gap: 8px !important; }
  .bento-grid-3 { grid-template-columns: 1fr !important; }
  .bento-grid-2 { grid-template-columns: 1fr !important; }
  .span-2, .span-3, .span-4 { grid-column: 1 / -1 !important; }
  
  .service-bento { min-height: auto; padding: var(--space-md); }
  
  .testi-bento-grid { grid-template-columns: 1fr !important; gap: 8px !important; }
  .footer-grid { grid-template-columns: 1fr !important; }
  .cta-bento { padding: var(--space-2xl) var(--space-md); border-radius: var(--radius-md); }
  
  .form-grid { grid-template-columns: 1fr !important; }
  
  .cookie-banner { flex-direction: column; left: 8px; right: 8px; bottom: 8px; text-align: center; border-radius: var(--radius-md); padding: 16px; }
}

/* Lucide Icons Styles */
.lucide { 
  width: 1em; 
  height: 1em; 
  stroke-width: 2; 
}
.service-icon .lucide { width: 32px; height: 32px; stroke-width: 1.5; color: var(--text-main); }
.step-number-bento .lucide, .step-bento h4 + div .lucide { width: 48px; height: 48px; stroke-width: 1.5; }
.icon.lucide { width: 18px; height: 18px; }
.info-row .icon .lucide { width: 24px; height: 24px; color: var(--text-main); }
.trust-item .lucide { width: 24px; height: 24px; }
.btn .lucide { width: 1.2em; height: 1.2em; margin-bottom: -2px; }

/* ── DRAWER COMPONENT ── */
.drawer-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.5); backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px); z-index: 1000; opacity: 0; pointer-events: none; transition: opacity 0.3s ease; }
.drawer-overlay.active { opacity: 1; pointer-events: all; }
.contact-drawer { position: fixed; top: 0; right: 0; width: 100%; max-width: 500px; height: 100%; background: var(--bg-card); z-index: 1001; transform: translateX(100%); transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1); display: flex; flex-direction: column; box-shadow: -10px 0 40px rgba(0,0,0,0.8); border-left: 1px solid var(--border-color); overflow-y: auto; }
.contact-drawer.active { transform: translateX(0); }
.drawer-header { display: flex; align-items: center; justify-content: space-between; padding: var(--space-xl); border-bottom: 1px solid var(--border-color); position: sticky; top: 0; background: var(--bg-color); z-index: 10; }
.drawer-header h2 { font-size: 1.5rem; margin: 0; color: var(--text-main); }
.drawer-close { background: rgba(255,255,255,0.05); border: 1px solid var(--border-color); width: 40px; height: 40px; border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; cursor: pointer; color: var(--text-main); transition: all 0.2s ease; }
.drawer-close:hover { background: var(--text-main); color: var(--bg-color); }
.drawer-body { padding: var(--space-xl); flex: 1; display: flex; flex-direction: column; gap: var(--space-md); }
.drawer-body p { color: var(--text-muted); font-size: 0.95rem; margin-bottom: var(--space-sm); line-height: 1.6; }
.drawer-form { display: flex; flex-direction: column; gap: var(--space-md); }
.drawer-form .input-group { display: flex; flex-direction: column; gap: 8px; }
.drawer-form label { font-size: 0.85rem; font-weight: 600; color: var(--text-light); }
.drawer-form input, .drawer-form select, .drawer-form textarea { width: 100%; padding: 14px 16px; background: rgba(255,255,255,0.02); border: 1px solid var(--border-color); border-radius: var(--radius-sm); color: var(--text-main); font-family: 'Inter', sans-serif; font-size: 1rem; transition: border-color 0.2s ease; box-sizing: border-box; }
.drawer-form input:focus, .drawer-form select:focus, .drawer-form textarea:focus { outline: none; border-color: var(--accent); background: rgba(255,255,255,0.05); }
.drawer-form textarea { resize: vertical; min-height: 100px; }
body.drawer-open { overflow: hidden; }

/* ── PREMIUM LOGO ── */
.logo-icon-premium { display: flex; align-items: center; justify-content: center; width: 34px; height: 34px; border-radius: 10px; box-shadow: 0 4px 12px rgba(0,219,128,0.25); transition: transform 0.3s ease; }
.navbar-logo:hover .logo-icon-premium { transform: scale(1.05); }
.logo-name-premium { font-weight: 900; font-size: 1.45rem; letter-spacing: -1.2px; color: var(--text-main); font-family: 'Inter', sans-serif; display: flex; gap: 6px; text-transform: uppercase; align-items: baseline; }
.logo-name-premium span { 
  font-weight: 800; 
  font-size: 1.45rem; 
  background: linear-gradient(135deg, var(--accent) 0%, #009955 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
