/* =========================================================
   Atlas Studio Digital — Design System
   Inspired by FlowCreates.com.my
   Clean, modern, light theme with indigo/cyan accents
   ========================================================= */

/* ── RESET ─────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body { font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif; color: var(--c-text); background: var(--c-bg); line-height: 1.6; -webkit-font-smoothing: antialiased; overflow-x: hidden; }
img, video { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font: inherit; color: inherit; }
ul, ol { list-style: none; }
input, textarea, select { font: inherit; color: inherit; }
h1, h2, h3, h4, h5, h6 { font-family: 'Poppins', 'Inter', sans-serif; font-weight: 600; line-height: 1.2; color: var(--c-heading); }

/* ── VARIABLES ─────────────────────────────────────────── */
:root {
    /* Primary */
    --c-primary: #4f46e5;
    --c-primary-light: #818cf8;
    --c-primary-dark: #3730a3;
    --c-primary-rgb: 79, 70, 229;

    /* Accent */
    --c-accent: #06b6d4;
    --c-accent-light: #67e8f9;
    --c-accent-rgb: 6, 182, 212;

    /* Neutral */
    --c-bg: #ffffff;
    --c-bg-alt: #f8fafc;
    --c-bg-dark: #0f172a;
    --c-surface: #f1f5f9;
    --c-surface-hover: #e2e8f0;
    --c-border: #e2e8f0;
    --c-border-light: #f1f5f9;

    /* Text */
    --c-heading: #0f172a;
    --c-text: #334155;
    --c-text-light: #64748b;
    --c-text-muted: #94a3b8;
    --c-white: #ffffff;

    /* Gradient */
    --gradient: linear-gradient(135deg, var(--c-primary), var(--c-accent));
    --gradient-soft: linear-gradient(135deg, rgba(79,70,229,0.08), rgba(6,182,212,0.08));
    --gradient-dark: linear-gradient(135deg, #1e1b4b, #0f172a);

    /* Shadows */
    --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
    --shadow: 0 4px 6px -1px rgba(0,0,0,0.07), 0 2px 4px -2px rgba(0,0,0,0.05);
    --shadow-md: 0 10px 15px -3px rgba(0,0,0,0.08), 0 4px 6px -4px rgba(0,0,0,0.05);
    --shadow-lg: 0 20px 25px -5px rgba(0,0,0,0.08), 0 8px 10px -6px rgba(0,0,0,0.04);
    --shadow-xl: 0 25px 50px -12px rgba(0,0,0,0.15);

    /* Spacing */
    --section-pad: clamp(4rem, 8vw, 8rem);
    --container-max: 1200px;
    --container-pad: clamp(1.25rem, 4vw, 2rem);

    /* Radius */
    --radius-sm: 6px;
    --radius: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --radius-full: 9999px;

    /* Transitions */
    --ease: cubic-bezier(0.4, 0, 0.2, 1);
    --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
    --duration: 0.3s;
    --duration-slow: 0.6s;

    /* Header */
    --header-h: 80px;
}

/* ── TYPOGRAPHY ────────────────────────────────────────── */
h1 { font-size: clamp(2.25rem, 5vw, 3.75rem); letter-spacing: -0.025em; }
h2 { font-size: clamp(1.75rem, 4vw, 3rem); letter-spacing: -0.02em; }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.75rem); }
h4 { font-size: clamp(1.1rem, 2vw, 1.35rem); }
p { font-size: 1rem; line-height: 1.7; }
.text-lg { font-size: clamp(1.1rem, 1.5vw, 1.25rem); line-height: 1.7; }
.text-sm { font-size: 0.875rem; }
.text-xs { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.1em; font-weight: 600; }

/* ── LAYOUT ────────────────────────────────────────────── */
.container { max-width: var(--container-max); margin: 0 auto; padding-left: var(--container-pad); padding-right: var(--container-pad); width: 100%; }
.section { padding: var(--section-pad) 0; }
.section--alt { background: var(--c-bg-alt); }
.section--dark { background: var(--c-bg-dark); color: var(--c-white); }
.section--dark h2, .section--dark h3, .section--dark h4 { color: var(--c-white); }
.section--dark p { color: rgba(255,255,255,0.75); }
.section--gradient { background: var(--gradient-dark); color: var(--c-white); }
.section--gradient h2, .section--gradient h3, .section--gradient h4 { color: var(--c-white); }
.section--gradient p { color: rgba(255,255,255,0.75); }

.section__header { text-align: center; max-width: 680px; margin: 0 auto clamp(2.5rem, 5vw, 4rem); }
.section__label { display: inline-block; font-size: 0.8rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.12em; color: var(--c-primary); margin-bottom: 1rem; padding: 0.35rem 1rem; background: rgba(var(--c-primary-rgb), 0.08); border-radius: var(--radius-full); }
.section--dark .section__label,
.section--gradient .section__label { background: rgba(255,255,255,0.1); color: var(--c-accent-light); }
.section__title { margin-bottom: 1rem; }
.section__desc { color: var(--c-text-light); font-size: 1.1rem; line-height: 1.7; }
.section--dark .section__desc,
.section--gradient .section__desc { color: rgba(255,255,255,0.7); }

.grid { display: grid; gap: 2rem; }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
.grid--5 { grid-template-columns: repeat(5, 1fr); }

/* ── SKIP LINK ─────────────────────────────────────────── */
.skip-link { position: fixed; top: -100%; left: 50%; transform: translateX(-50%); z-index: 10000; padding: 0.75rem 1.5rem; background: var(--c-primary); color: white; border-radius: var(--radius); font-weight: 600; transition: top var(--duration); }
.skip-link:focus { top: 1rem; }

/* ── BUTTONS ───────────────────────────────────────────── */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem; padding: 0.8rem 2rem; font-size: 0.95rem; font-weight: 600; border-radius: var(--radius-full); transition: all var(--duration) var(--ease); white-space: nowrap; position: relative; overflow: hidden; }
.btn--primary { background: var(--c-primary); color: var(--c-white); }
.btn--primary:hover { background: var(--c-primary-dark); transform: translateY(-2px); box-shadow: 0 8px 25px rgba(var(--c-primary-rgb), 0.35); }
.btn--secondary { background: var(--c-white); color: var(--c-primary); border: 2px solid var(--c-border); }
.btn--secondary:hover { border-color: var(--c-primary); background: rgba(var(--c-primary-rgb), 0.04); transform: translateY(-2px); }
.btn--outline { background: transparent; color: var(--c-primary); border: 2px solid var(--c-primary); }
.btn--outline:hover { background: var(--c-primary); color: var(--c-white); transform: translateY(-2px); }
.btn--white { background: var(--c-white); color: var(--c-primary); }
.btn--white:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.btn--ghost { background: rgba(255,255,255,0.1); color: var(--c-white); border: 1px solid rgba(255,255,255,0.2); }
.btn--ghost:hover { background: rgba(255,255,255,0.2); transform: translateY(-2px); }
.btn--sm { padding: 0.55rem 1.25rem; font-size: 0.875rem; }
.btn--lg { padding: 1rem 2.5rem; font-size: 1.05rem; }
.btn--full { width: 100%; }
.btn svg { width: 18px; height: 18px; }
.btn-group { display: flex; gap: 1rem; flex-wrap: wrap; }

/* ── HEADER ────────────────────────────────────────────── */
.header { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; height: var(--header-h); display: flex; align-items: center; transition: all var(--duration) var(--ease); background: transparent; }
.header.scrolled { background: rgba(255,255,255,0.95); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); box-shadow: 0 1px 3px rgba(0,0,0,0.05); }
.header__inner { display: flex; align-items: center; justify-content: space-between; }
.header__logo { font-family: 'Poppins', sans-serif; font-size: 1.65rem; font-weight: 700; color: var(--c-heading); letter-spacing: -0.02em; }
.header__logo span { color: var(--c-primary); }
.header.hero-dark .header__logo { color: var(--c-white); }
.header.hero-dark.scrolled .header__logo { color: var(--c-heading); }

.header__nav { display: flex; align-items: center; gap: 0.25rem; }
.header__link { padding: 0.5rem 0.9rem; font-size: 0.9rem; font-weight: 500; color: var(--c-text); border-radius: var(--radius-sm); transition: all var(--duration); }
.header__link:hover, .header__link.active { color: var(--c-primary); background: rgba(var(--c-primary-rgb), 0.06); }
.header.hero-dark .header__link { color: rgba(255,255,255,0.85); }
.header.hero-dark .header__link:hover,
.header.hero-dark .header__link.active { color: var(--c-white); background: rgba(255,255,255,0.1); }
.header.hero-dark.scrolled .header__link { color: var(--c-text); }
.header.hero-dark.scrolled .header__link:hover,
.header.hero-dark.scrolled .header__link.active { color: var(--c-primary); background: rgba(var(--c-primary-rgb), 0.06); }

.header__actions { display: flex; align-items: center; gap: 1rem; }

/* Burger */
.header__burger { display: none; width: 28px; height: 20px; position: relative; flex-direction: column; justify-content: space-between; }
.header__burger span { display: block; width: 100%; height: 2px; background: var(--c-heading); border-radius: 2px; transition: all var(--duration) var(--ease); transform-origin: center; }
.header.hero-dark .header__burger span { background: var(--c-white); }
.header.hero-dark.scrolled .header__burger span { background: var(--c-heading); }
.header__burger.open span:nth-child(1) { transform: rotate(45deg) translate(6px, 6px); }
.header__burger.open span:nth-child(2) { opacity: 0; }
.header__burger.open span:nth-child(3) { transform: rotate(-45deg) translate(7px, -7px); }
/* When mobile menu is open: force logo + burger to dark */
.header:has(.header__burger.open) .header__logo,
.header.hero-dark:has(.header__burger.open) .header__logo { color: var(--c-heading); }
.header:has(.header__burger.open) .header__burger span,
.header.hero-dark:has(.header__burger.open) .header__burger span { background: var(--c-heading); }

/* Mobile Menu */
.mobile-menu { position: fixed; inset: 0; z-index: 999; background: var(--c-white); display: flex; flex-direction: column; justify-content: center; padding: 2rem; opacity: 0; visibility: hidden; transition: all 0.4s var(--ease); }
.mobile-menu.open { opacity: 1; visibility: visible; }
.mobile-menu__nav { display: flex; flex-direction: column; gap: 0.5rem; }
.mobile-menu__link { font-size: 1.75rem; font-weight: 600; font-family: 'Poppins', sans-serif; color: var(--c-heading); padding: 0.5rem 0; transform: translateX(-20px); opacity: 0; transition: all 0.4s var(--ease); }
.mobile-menu.open .mobile-menu__link { transform: translateX(0); opacity: 1; }
.mobile-menu.open .mobile-menu__link:nth-child(1) { transition-delay: 0.05s; }
.mobile-menu.open .mobile-menu__link:nth-child(2) { transition-delay: 0.1s; }
.mobile-menu.open .mobile-menu__link:nth-child(3) { transition-delay: 0.15s; }
.mobile-menu.open .mobile-menu__link:nth-child(4) { transition-delay: 0.2s; }
.mobile-menu.open .mobile-menu__link:nth-child(5) { transition-delay: 0.25s; }
.mobile-menu.open .mobile-menu__link:nth-child(6) { transition-delay: 0.3s; }
.mobile-menu.open .mobile-menu__link:nth-child(7) { transition-delay: 0.35s; }
.mobile-menu.open .mobile-menu__link:nth-child(8) { transition-delay: 0.4s; }
.mobile-menu__link:hover, .mobile-menu__link.active { color: var(--c-primary); }
.mobile-menu__info { margin-top: 3rem; padding-top: 2rem; border-top: 1px solid var(--c-border); color: var(--c-text-light); font-size: 0.9rem; }
.mobile-menu__info p { margin-bottom: 0.25rem; }

/* ── HERO ──────────────────────────────────────────────── */
.hero { position: relative; min-height: 100vh; display: flex; align-items: center; padding-top: var(--header-h); overflow: hidden; }
.hero--dark { background: var(--gradient-dark); color: var(--c-white); }
.hero--dark h1, .hero--dark h2, .hero--dark h3 { color: var(--c-white); }
.hero--light { background: var(--c-bg-alt); }
.hero--centered { text-align: center; justify-content: center; }
.hero--page { min-height: 50vh; }

.hero__content { position: relative; z-index: 2; max-width: 680px; }
.hero--centered .hero__content { max-width: 800px; margin: 0 auto; }
.hero__label { display: inline-block; font-size: 0.8rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.12em; color: var(--c-accent-light); margin-bottom: 1.5rem; padding: 0.4rem 1.2rem; background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.12); border-radius: var(--radius-full); }
.hero--light .hero__label { color: var(--c-primary); background: rgba(var(--c-primary-rgb), 0.08); border-color: rgba(var(--c-primary-rgb), 0.12); }
.hero__title { margin-bottom: 1.5rem; }
.hero__title .highlight { background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.hero__desc { font-size: clamp(1.05rem, 1.8vw, 1.2rem); line-height: 1.8; margin-bottom: 2.5rem; color: rgba(255,255,255,0.75); }
.hero--light .hero__desc { color: var(--c-text-light); }

/* Hero with two columns */
.hero__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.hero__image { position: relative; z-index: 2; }
.hero__image img { border-radius: var(--radius-lg); box-shadow: var(--shadow-xl); }
.hero__image-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.hero__image-grid img { border-radius: var(--radius); }
.hero__image-grid img:first-child { margin-top: 2rem; }

/* Hero decorative elements */
.hero__bg-pattern { position: absolute; inset: 0; z-index: 0; opacity: 0.4; background-image: radial-gradient(rgba(255,255,255,0.08) 1px, transparent 1px); background-size: 40px 40px; }
.hero__bg-glow { position: absolute; width: 600px; height: 600px; border-radius: 50%; filter: blur(120px); opacity: 0.15; z-index: 0; }
.hero__bg-glow--1 { background: var(--c-primary); top: -200px; right: -100px; }
.hero__bg-glow--2 { background: var(--c-accent); bottom: -200px; left: -100px; }

/* Hero stats bar */
.hero__stats { display: flex; gap: 3rem; margin-top: 3rem; padding-top: 2rem; border-top: 1px solid rgba(255,255,255,0.1); }
.hero--light .hero__stats { border-color: var(--c-border); }
.hero__stat-value { font-size: 1.75rem; font-weight: 700; font-family: 'Poppins', sans-serif; color: var(--c-white); }
.hero--light .hero__stat-value { background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.hero__stat-label { font-size: 0.85rem; color: rgba(255,255,255,0.6); margin-top: 0.25rem; }
.hero--light .hero__stat-label { color: var(--c-text-light); }
.hero__proof { font-size: 0.85rem; color: rgba(255,255,255,0.55); letter-spacing: 0.04em; margin-top: 1.75rem; margin-bottom: 0; }
.hero--light .hero__proof { color: var(--c-text-light); }

/* ── CARDS ─────────────────────────────────────────────── */
.card { background: var(--c-white); border: 1px solid var(--c-border); border-radius: var(--radius-lg); padding: 2rem; transition: all var(--duration) var(--ease); }
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: rgba(var(--c-primary-rgb), 0.15); }

/* Service Card */
.service-card { text-align: center; padding: 2.5rem 2rem; }
.service-card__icon { width: 56px; height: 56px; margin: 0 auto 1.25rem; display: flex; align-items: center; justify-content: center; background: var(--gradient-soft); border-radius: var(--radius); color: var(--c-primary); }
.service-card__icon svg { width: 28px; height: 28px; }
.service-card__title { font-size: 1.15rem; margin-bottom: 0.75rem; }
.service-card__desc { font-size: 0.925rem; color: var(--c-text-light); line-height: 1.6; }
.service-card__features { margin-top: 1.25rem; text-align: left; }
.service-card__features li { font-size: 0.875rem; color: var(--c-text); padding: 0.35rem 0; display: flex; align-items: center; gap: 0.5rem; }
.service-card__features li::before { content: ''; width: 5px; height: 5px; background: var(--c-primary); border-radius: 50%; flex-shrink: 0; }

/* Portfolio Card */
.portfolio-card { overflow: hidden; padding: 0; border: none; background: var(--c-white); border-radius: var(--radius-lg); box-shadow: var(--shadow); }
.portfolio-card__image { position: relative; overflow: hidden; aspect-ratio: 16/10; }
.portfolio-card__image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.portfolio-card:hover .portfolio-card__image img { transform: scale(1.05); }
.portfolio-card__tag { position: absolute; top: 1rem; left: 1rem; font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; color: var(--c-white); background: rgba(var(--c-primary-rgb), 0.85); backdrop-filter: blur(8px); padding: 0.3rem 0.8rem; border-radius: var(--radius-full); }
.portfolio-card__body { padding: 1.75rem; }
.portfolio-card__title { font-size: 1.2rem; margin-bottom: 0.5rem; }
.portfolio-card__desc { font-size: 0.9rem; color: var(--c-text-light); margin-bottom: 1.25rem; line-height: 1.6; }
.portfolio-card__stats { display: flex; gap: 1rem; flex-wrap: wrap; }
.portfolio-card__stat { font-size: 0.8rem; font-weight: 600; color: var(--c-primary); background: rgba(var(--c-primary-rgb), 0.06); padding: 0.25rem 0.65rem; border-radius: var(--radius-full); }

/* Portfolio Alternating (detail layout) */
.portfolio-item { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; padding: 3rem 0; }
.portfolio-item:nth-child(even) { direction: rtl; }
.portfolio-item:nth-child(even) > * { direction: ltr; }
.portfolio-item__image { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); }
.portfolio-item__image img { width: 100%; display: block; }
.portfolio-item__tag { font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; color: var(--c-primary); margin-bottom: 0.75rem; }
.portfolio-item__title { font-size: 1.5rem; margin-bottom: 0.75rem; }
.portfolio-item__desc { color: var(--c-text-light); margin-bottom: 1.5rem; }
.portfolio-item__link { display: inline-flex; align-items: center; gap: 0.5rem; font-weight: 600; color: var(--c-primary); transition: gap var(--duration); }
.portfolio-item__link:hover { gap: 0.75rem; }
.portfolio-item__link svg { width: 18px; height: 18px; }

/* Blog Card */
.blog-card { overflow: hidden; padding: 0; }
.blog-card__image { overflow: hidden; aspect-ratio: 16/9; }
.blog-card__image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.blog-card:hover .blog-card__image img { transform: scale(1.05); }
.blog-card__body { padding: 1.5rem; }
.blog-card__meta { display: flex; align-items: center; gap: 1rem; margin-bottom: 0.75rem; }
.blog-card__category { font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; color: var(--c-primary); }
.blog-card__date { font-size: 0.8rem; color: var(--c-text-muted); }
.blog-card__title { font-size: 1.1rem; margin-bottom: 0.5rem; transition: color var(--duration); }
.blog-card:hover .blog-card__title { color: var(--c-primary); }
.blog-card__excerpt { font-size: 0.9rem; color: var(--c-text-light); line-height: 1.6; }

/* Pricing Card */
.pricing-card { padding: 2.5rem; position: relative; text-align: center; display: flex; flex-direction: column; }
.pricing-card__features { flex: 1; }
.pricing-card__actions { margin-top: auto; }
.pricing-card--popular { border: 2px solid var(--c-primary); box-shadow: var(--shadow-lg); transform: scale(1.03); }
.pricing-card--popular:hover { transform: scale(1.03) translateY(-4px); }
.pricing-card__badge { position: absolute; top: -14px; left: 50%; transform: translateX(-50%); background: var(--gradient); color: var(--c-white); font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; padding: 0.4rem 1.5rem; border-radius: var(--radius-full); }
.pricing-card__name { font-size: 1.1rem; color: var(--c-text-light); font-weight: 500; margin-bottom: 0.75rem; }
.pricing-card__price { font-size: 2.5rem; font-weight: 700; font-family: 'Poppins', sans-serif; color: var(--c-heading); margin-bottom: 0.25rem; }
.pricing-card__duration { font-size: 0.85rem; color: var(--c-text-muted); margin-bottom: 1.5rem; }
.pricing-card__desc { font-size: 0.9rem; color: var(--c-text-light); margin-bottom: 2rem; line-height: 1.6; padding-bottom: 1.5rem; border-bottom: 1px solid var(--c-border); }
.pricing-card__features { text-align: left; margin-bottom: 2rem; }
.pricing-card__features li { font-size: 0.9rem; padding: 0.5rem 0; display: flex; align-items: flex-start; gap: 0.75rem; color: var(--c-text); }
.pricing-card__features li::before { content: '✓'; color: var(--c-primary); font-weight: 700; flex-shrink: 0; margin-top: 0.1em; }

/* Testimonial Card */
.testimonial-card { padding: 2rem; background: var(--c-white); border-radius: var(--radius-lg); border: 1px solid var(--c-border); }
.testimonial-card__stars { color: #f59e0b; margin-bottom: 1rem; font-size: 1.1rem; letter-spacing: 0.1em; }
.testimonial-card__quote { font-size: 1rem; line-height: 1.7; color: var(--c-text); margin-bottom: 1.5rem; font-style: italic; }
.testimonial-card__author { display: flex; align-items: center; gap: 0.75rem; }
.testimonial-card__avatar { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; }
.testimonial-card__name { font-weight: 600; font-size: 0.9rem; color: var(--c-heading); }
.testimonial-card__role { font-size: 0.8rem; color: var(--c-text-muted); }

/* Career Card */
.career-card { padding: 2rem; }
.career-card__header { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 1rem; flex-wrap: wrap; gap: 0.75rem; }
.career-card__title { font-size: 1.15rem; }
.career-card__badges { display: flex; gap: 0.5rem; flex-wrap: wrap; }
.career-card__badge { font-size: 0.75rem; font-weight: 600; padding: 0.25rem 0.75rem; border-radius: var(--radius-full); background: var(--c-surface); color: var(--c-text-light); }
.career-card__badge--dept { background: rgba(var(--c-primary-rgb), 0.08); color: var(--c-primary); }
.career-card__desc { font-size: 0.925rem; color: var(--c-text-light); margin-bottom: 1.25rem; line-height: 1.6; }
.career-card__reqs { margin-bottom: 1.5rem; }
.career-card__reqs li { font-size: 0.85rem; color: var(--c-text); padding: 0.3rem 0; padding-left: 1.25rem; position: relative; }
.career-card__reqs li::before { content: ''; position: absolute; left: 0; top: 0.7em; width: 5px; height: 5px; background: var(--c-primary); border-radius: 50%; }

/* Process Card */
.process-card { padding: 2rem; text-align: center; position: relative; }
.process-card__num { font-size: 3rem; font-weight: 800; font-family: 'Poppins', sans-serif; background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; line-height: 1; margin-bottom: 1rem; }
.process-card__title { font-size: 1.15rem; margin-bottom: 0.75rem; }
.process-card__desc { font-size: 0.9rem; color: var(--c-text-light); }

/* Stat Card */
.stat-card { text-align: center; padding: 2rem 1.5rem; }
.stat-card__value { font-size: 2.5rem; font-weight: 700; font-family: 'Poppins', sans-serif; background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; line-height: 1.2; }
.stat-card__label { font-size: 0.9rem; color: var(--c-text-light); margin-top: 0.5rem; }

/* ── PROBLEMS / BENEFITS ───────────────────────────────── */
.problems-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.problem-card { padding: 2rem; background: var(--c-white); border: 1px solid var(--c-border); border-radius: var(--radius-lg); text-align: center; }
.problem-card__icon { font-size: 2.5rem; margin-bottom: 1rem; }
.problem-card__title { font-size: 1.1rem; margin-bottom: 0.75rem; color: #dc2626; }
.problem-card__desc { font-size: 0.9rem; color: var(--c-text-light); }

.benefit-card { padding: 2rem; text-align: center; }
.benefit-card__icon { width: 60px; height: 60px; margin: 0 auto 1.25rem; display: flex; align-items: center; justify-content: center; background: var(--gradient); border-radius: var(--radius); color: var(--c-white); font-size: 1.5rem; }
.benefit-card__title { font-size: 1.15rem; margin-bottom: 0.75rem; }
.benefit-card__desc { font-size: 0.9rem; color: var(--c-text-light); }

/* ── FULL-WIDTH TESTIMONIAL ────────────────────────────── */
.testimonial-block { padding: var(--section-pad) 0; background: var(--gradient-soft); }
.testimonial-block__inner { max-width: 800px; margin: 0 auto; text-align: center; }
.testimonial-block__quote { font-size: clamp(1.2rem, 2.5vw, 1.6rem); font-style: italic; line-height: 1.7; color: var(--c-heading); margin-bottom: 2rem; }
.testimonial-block__quote::before { content: '"'; font-size: 4rem; line-height: 0; vertical-align: -0.4em; color: var(--c-primary); font-family: Georgia, serif; margin-right: 0.1em; }
.testimonial-block__author { font-weight: 600; color: var(--c-heading); }
.testimonial-block__role { font-size: 0.9rem; color: var(--c-text-light); }

/* ── CLIENTS / TRUST ───────────────────────────────────── */
.clients-bar { display: flex; align-items: center; justify-content: center; gap: 3rem; flex-wrap: wrap; padding: 2rem 0; opacity: 0.5; }
.clients-bar__item { font-size: 1.1rem; font-weight: 600; font-family: 'Poppins', sans-serif; color: var(--c-text-light); }

/* ── CTA SECTION ───────────────────────────────────────── */
.cta { padding: var(--section-pad) 0; background: var(--gradient-dark); text-align: center; position: relative; overflow: hidden; }
.cta__inner { position: relative; z-index: 2; max-width: 680px; margin: 0 auto; }
.cta__title { color: var(--c-white); margin-bottom: 1rem; }
.cta__desc { color: rgba(255,255,255,0.7); font-size: 1.1rem; margin-bottom: 2.5rem; }
.cta .hero__bg-glow { opacity: 0.1; }

/* ── ACCORDION / FAQ ───────────────────────────────────── */
.accordion { max-width: 800px; margin: 0 auto; }
.accordion__item { border-bottom: 1px solid var(--c-border); }
.accordion__trigger { width: 100%; display: flex; align-items: center; justify-content: space-between; padding: 1.25rem 0; font-size: 1rem; font-weight: 600; color: var(--c-heading); text-align: left; cursor: pointer; transition: color var(--duration); gap: 1rem; }
.accordion__trigger:hover { color: var(--c-primary); }
.accordion__icon { width: 24px; height: 24px; position: relative; flex-shrink: 0; }
.accordion__icon::before, .accordion__icon::after { content: ''; position: absolute; background: currentColor; border-radius: 2px; transition: transform var(--duration) var(--ease); }
.accordion__icon::before { width: 14px; height: 2px; top: 50%; left: 50%; transform: translate(-50%, -50%); }
.accordion__icon::after { width: 2px; height: 14px; top: 50%; left: 50%; transform: translate(-50%, -50%); }
.accordion__item.open .accordion__icon::after { transform: translate(-50%, -50%) rotate(90deg); }
.accordion__content { max-height: 0; overflow: hidden; transition: max-height 0.4s var(--ease); }
.accordion__text { padding-bottom: 1.25rem; font-size: 0.95rem; color: var(--c-text-light); line-height: 1.7; }

/* ── FORMS ─────────────────────────────────────────────── */
.form-group { margin-bottom: 1.5rem; }
.form-label { display: block; font-size: 0.875rem; font-weight: 600; color: var(--c-heading); margin-bottom: 0.5rem; }
.form-input, .form-textarea, .form-select { width: 100%; padding: 0.85rem 1rem; border: 1.5px solid var(--c-border); border-radius: var(--radius); background: var(--c-white); font-size: 0.95rem; transition: all var(--duration); }
.form-input:focus, .form-textarea:focus, .form-select:focus { outline: none; border-color: var(--c-primary); box-shadow: 0 0 0 3px rgba(var(--c-primary-rgb), 0.1); }
.form-input::placeholder, .form-textarea::placeholder { color: var(--c-text-muted); }
.form-textarea { min-height: 140px; resize: vertical; }

/* Contact Layout */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
.contact-info { display: flex; flex-direction: column; gap: 2rem; }
.contact-info-card { display: flex; gap: 1rem; align-items: flex-start; }
.contact-info-card__icon { width: 48px; height: 48px; display: flex; align-items: center; justify-content: center; background: var(--gradient-soft); border-radius: var(--radius); color: var(--c-primary); flex-shrink: 0; }
.contact-info-card__icon svg { width: 22px; height: 22px; }
.contact-info-card__label { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--c-text-muted); margin-bottom: 0.25rem; }
.contact-info-card__value { font-weight: 600; color: var(--c-heading); }
.contact-info-card__value a { transition: color var(--duration); }
.contact-info-card__value a:hover { color: var(--c-primary); }

/* Success Message */
.alert { padding: 1rem 1.5rem; border-radius: var(--radius); margin-bottom: 1.5rem; font-size: 0.925rem; }
.alert--success { background: #ecfdf5; border: 1px solid #a7f3d0; color: #065f46; }
.alert--error { background: #fef2f2; border: 1px solid #fecaca; color: #991b1b; }

/* ── BLOG DETAIL ───────────────────────────────────────── */
.blog-detail { max-width: 800px; margin: 0 auto; }
.blog-detail__hero-image { width: 100%; aspect-ratio: 16/7; object-fit: cover; border-radius: var(--radius-lg); margin-bottom: 2.5rem; }
.blog-detail__meta { display: flex; gap: 1.5rem; align-items: center; margin-bottom: 2rem; flex-wrap: wrap; }
.blog-detail__content { font-size: 1.05rem; line-height: 1.8; }
.blog-detail__content h3 { margin-top: 2.5rem; margin-bottom: 1rem; }
.blog-detail__content p { margin-bottom: 1.25rem; }
.blog-detail__content strong { color: var(--c-heading); }

/* Blog Filters */
.blog-filters { display: flex; gap: 0.5rem; flex-wrap: wrap; margin-bottom: 3rem; justify-content: center; }
.blog-filter { padding: 0.4rem 1.1rem; font-size: 0.825rem; font-weight: 500; border: 1px solid var(--c-border); border-radius: var(--radius-full); color: var(--c-text-light); transition: all var(--duration); cursor: pointer; }
.blog-filter:hover, .blog-filter.active { background: var(--c-primary); color: var(--c-white); border-color: var(--c-primary); }

/* ── INDUSTRIES GRID ───────────────────────────────────── */
.industries-grid { display: flex; flex-wrap: wrap; gap: 0.75rem; justify-content: center; }
.industry-tag { padding: 0.5rem 1.25rem; background: var(--c-surface); border-radius: var(--radius-full); font-size: 0.875rem; font-weight: 500; color: var(--c-text); transition: all var(--duration); }
.industry-tag:hover { background: rgba(var(--c-primary-rgb), 0.08); color: var(--c-primary); }

/* ── DIFF CARDS (Problem vs Solution comparison) ──────── */
.diff-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.diff-card { padding: 2.5rem; border-radius: var(--radius-lg); }
.diff-card--problem { background: #fef2f2; border: 1px solid #fecaca; }
.diff-card--solution { background: #ecfdf5; border: 1px solid #a7f3d0; }
.diff-card__title { font-size: 1.2rem; margin-bottom: 1.5rem; display: flex; align-items: center; gap: 0.75rem; }
.diff-card--problem .diff-card__title { color: #dc2626; }
.diff-card--solution .diff-card__title { color: #059669; }
.diff-card__list li { padding: 0.6rem 0; font-size: 0.925rem; color: var(--c-text); display: flex; gap: 0.75rem; align-items: flex-start; }
.diff-card--problem .diff-card__list li::before { content: '✕'; color: #dc2626; font-weight: 700; flex-shrink: 0; }
.diff-card--solution .diff-card__list li::before { content: '✓'; color: #059669; font-weight: 700; flex-shrink: 0; }

/* ── ABOUT VALUES ──────────────────────────────────────── */
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.value-card { padding: 2.5rem; text-align: center; background: var(--c-white); border: 1px solid var(--c-border); border-radius: var(--radius-lg); }
.value-card__icon { font-size: 2.5rem; margin-bottom: 1rem; }
.value-card__title { font-size: 1.15rem; margin-bottom: 0.75rem; }
.value-card__desc { font-size: 0.9rem; color: var(--c-text-light); }

/* ── PAGE HERO ────────────────────────────────────────── */
.page-hero { padding-top: calc(var(--header-h) + 4rem); padding-bottom: 3rem; text-align: center; background: var(--c-bg-dark); color: var(--c-white); }
.page-hero__title { font-size: clamp(2rem, 5vw, 3rem); font-weight: 800; margin-bottom: 0.75rem; }
.page-hero__subtitle { font-size: 1rem; color: rgba(255,255,255,0.6); }

/* ── LEGAL CONTENT ────────────────────────────────────── */
.legal-content { max-width: 780px; margin: 0 auto; padding: 0 1.5rem; }
.legal-content article { margin-bottom: 2.5rem; }
.legal-content h2 { font-size: 1.4rem; font-weight: 700; color: var(--c-heading); margin-bottom: 1rem; padding-bottom: 0.5rem; border-bottom: 2px solid var(--c-primary-light); }
.legal-content h3 { font-size: 1.1rem; font-weight: 600; color: var(--c-heading); margin-top: 1.5rem; margin-bottom: 0.75rem; }
.legal-content p { font-size: 0.95rem; line-height: 1.8; color: var(--c-text); margin-bottom: 0.75rem; }
.legal-content ul { list-style: none; padding: 0; margin: 0.75rem 0 1rem; }
.legal-content ul li { position: relative; padding-left: 1.5rem; font-size: 0.95rem; line-height: 1.8; color: var(--c-text); margin-bottom: 0.35rem; }
.legal-content ul li::before { content: ''; position: absolute; left: 0; top: 0.65rem; width: 6px; height: 6px; border-radius: 50%; background: var(--c-primary); }
.legal-content a { color: var(--c-primary); text-decoration: underline; text-underline-offset: 2px; transition: color var(--duration); }
.legal-content a:hover { color: var(--c-primary-light); }
.legal-content strong { font-weight: 600; color: var(--c-heading); }

/* ── FOOTER ADDRESS ───────────────────────────────────── */
.footer__address { font-size: 0.9rem; color: rgba(255,255,255,0.6); line-height: 1.7; margin-top: 0.5rem; }

/* ── FOOTER ────────────────────────────────────────────── */
.footer { background: var(--c-bg-dark); color: rgba(255,255,255,0.75); padding-top: var(--section-pad); }
.footer__top { display: grid; grid-template-columns: 1.5fr 2fr; gap: 4rem; padding-bottom: 3rem; }
.footer__logo { font-family: 'Poppins', sans-serif; font-size: 1.65rem; font-weight: 700; color: var(--c-white); display: inline-block; margin-bottom: 1rem; }
.footer__logo span { color: var(--c-primary-light); }
.footer__tagline { font-size: 0.925rem; line-height: 1.7; margin-bottom: 1.5rem; }
.footer__social { display: flex; gap: 0.75rem; }
.footer__social a { width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; border-radius: 50%; background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.7); transition: all var(--duration); }
.footer__social a:hover { background: var(--c-primary); color: var(--c-white); transform: translateY(-2px); }
.footer__links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.footer__heading { font-size: 0.85rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; color: var(--c-white); margin-bottom: 1.25rem; }
.footer__col a, .footer__col p { display: block; font-size: 0.9rem; color: rgba(255,255,255,0.6); padding: 0.3rem 0; transition: color var(--duration); }
.footer__col a:hover { color: var(--c-white); }

.footer__newsletter { padding: 2.5rem 0; border-top: 1px solid rgba(255,255,255,0.08); border-bottom: 1px solid rgba(255,255,255,0.08); text-align: center; margin-bottom: 2rem; }
.footer__newsletter h4 { color: var(--c-white); margin-bottom: 0.5rem; }
.footer__newsletter p { font-size: 0.9rem; margin-bottom: 1.25rem; }
.footer__form { display: flex; max-width: 460px; margin: 0 auto; gap: 0.5rem; }
.footer__form input { flex: 1; padding: 0.75rem 1rem; border: 1px solid rgba(255,255,255,0.15); border-radius: var(--radius-full); background: rgba(255,255,255,0.05); color: var(--c-white); font-size: 0.9rem; }
.footer__form input::placeholder { color: rgba(255,255,255,0.4); }
.footer__form input:focus { outline: none; border-color: var(--c-primary-light); }
.footer__form .btn { flex-shrink: 0; }

.footer__bottom { display: flex; justify-content: space-between; align-items: center; padding: 1.5rem 0; font-size: 0.825rem; color: rgba(255,255,255,0.4); }
.footer__legal { display: flex; gap: 1.5rem; }
.footer__legal a { color: rgba(255,255,255,0.4); transition: color var(--duration); }
.footer__legal a:hover { color: var(--c-white); }

/* ── WHATSAPP WIDGET ───────────────────────────────────── */
.whatsapp-widget { position: fixed; bottom: 2rem; right: 2rem; z-index: 900; width: 56px; height: 56px; background: #25d366; color: white; border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 15px rgba(37,211,102,0.4); transition: all var(--duration); }
.whatsapp-widget:hover { transform: scale(1.1) translateY(-2px); box-shadow: 0 6px 20px rgba(37,211,102,0.5); }

/* ── SCROLL ANIMATIONS ─────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(30px); transition: all 0.7s var(--ease); }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-left { opacity: 0; transform: translateX(-30px); transition: all 0.7s var(--ease); }
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right { opacity: 0; transform: translateX(30px); transition: all 0.7s var(--ease); }
.reveal-right.visible { opacity: 1; transform: translateX(0); }
.reveal-scale { opacity: 0; transform: scale(0.95); transition: all 0.7s var(--ease); }
.reveal-scale.visible { opacity: 1; transform: scale(1); }

/* Stagger children */
.stagger > * { opacity: 0; transform: translateY(20px); transition: all 0.5s var(--ease); }
.stagger.visible > * { opacity: 1; transform: translateY(0); }
.stagger.visible > *:nth-child(1) { transition-delay: 0s; }
.stagger.visible > *:nth-child(2) { transition-delay: 0.1s; }
.stagger.visible > *:nth-child(3) { transition-delay: 0.2s; }
.stagger.visible > *:nth-child(4) { transition-delay: 0.3s; }
.stagger.visible > *:nth-child(5) { transition-delay: 0.4s; }
.stagger.visible > *:nth-child(6) { transition-delay: 0.5s; }

/* ── KEYFRAMES ─────────────────────────────────────────── */
@keyframes fadeInUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.6; } }

/* ── UTILITIES ─────────────────────────────────────────── */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-gradient { background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-0 { margin-bottom: 0; }
.mb-2 { margin-bottom: 1rem; }
.mb-4 { margin-bottom: 2rem; }
.pt-0 { padding-top: 0; }
.hidden { display: none !important; }

/* ── RESPONSIVE ────────────────────────────────────────── */

/* Tablet */
@media (max-width: 991px) {
    .header__nav { display: none; }
    .header__burger { display: flex; }

    .hero__grid { grid-template-columns: 1fr; gap: 2.5rem; text-align: center; }
    .hero__content { max-width: 100%; }
    .hero__image { max-width: 500px; margin: 0 auto; }
    .hero__image { display: none; }
    .hero__grid { grid-template-columns: 1fr; }
    .hero__stats { justify-content: center; }
    .btn-group { justify-content: center; }

    .grid--3 { grid-template-columns: repeat(2, 1fr); }
    .grid--4 { grid-template-columns: repeat(2, 1fr); }

    .problems-grid { grid-template-columns: repeat(2, 1fr); }
    .values-grid { grid-template-columns: repeat(2, 1fr); }
    .diff-grid { grid-template-columns: 1fr; }

    .portfolio-item { grid-template-columns: 1fr; gap: 2rem; }
    .portfolio-item:nth-child(even) { direction: ltr; }

    .contact-grid { grid-template-columns: 1fr; gap: 3rem; }

    .footer__top { grid-template-columns: 1fr; gap: 3rem; }
    .footer__links { grid-template-columns: repeat(3, 1fr); }

    .pricing-card--popular { transform: none; }
    .pricing-card--popular:hover { transform: translateY(-4px); }
}

/* Mobile Landscape */
@media (max-width: 767px) {
    :root {
        --section-pad: clamp(3rem, 8vw, 5rem);
    }

    .grid--2, .grid--3, .grid--4 { grid-template-columns: 1fr; }
    .problems-grid { grid-template-columns: 1fr; }
    .values-grid { grid-template-columns: 1fr; }

    .hero { min-height: auto; padding-top: calc(var(--header-h) + 2rem); padding-bottom: 3rem; }
    .hero--page { min-height: auto; padding-top: calc(var(--header-h) + 2rem); padding-bottom: 2rem; }
    .hero__stats { flex-direction: column; gap: 1.5rem; align-items: center; }
    .hero__image-grid { grid-template-columns: 1fr; }
    .hero__image-grid img:first-child { margin-top: 0; }

    .footer__links { grid-template-columns: 1fr 1fr; }
    .footer__bottom { flex-direction: column; gap: 1rem; text-align: center; }
    .footer__form { flex-direction: column; }
}

/* Mobile Portrait */
@media (max-width: 479px) {
    h1 { font-size: 2rem; }
    h2 { font-size: 1.6rem; }

    .btn-group { flex-direction: column; }
    .btn-group .btn { width: 100%; }

    .clients-bar { gap: 1.5rem; }
    .clients-bar__item { font-size: 0.9rem; }

    .footer__links { grid-template-columns: 1fr; }
}

/* ── BOOKING PAGE ─────────────────────────────────────── */
.booking-section { padding: 4rem 0; }

.booking-grid {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 3rem;
    align-items: start;
}

.booking-success-banner {
    background: #DCFCE7;
    color: #166534;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Booking form fields */
.booking-grid .form-group { margin-bottom: 1.25rem; }
.booking-grid .form-group label {
    display: block;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--c-heading);
    margin-bottom: 0.4rem;
}

.booking-grid .form-group input,
.booking-grid .form-group select,
.booking-grid .form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1.5px solid var(--c-border);
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    color: var(--c-text);
    transition: border-color var(--duration) var(--ease);
    background: var(--c-bg);
}

.booking-grid .form-group input:focus,
.booking-grid .form-group select:focus,
.booking-grid .form-group textarea:focus {
    outline: none;
    border-color: var(--c-primary);
    box-shadow: 0 0 0 3px rgba(var(--c-primary-rgb), 0.1);
}

.booking-grid .form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-note {
    font-size: 0.85rem;
    color: var(--c-text-light);
    margin-top: 1rem;
    text-align: center;
}

/* Radio Group — Custom Yes/No */
.radio-group {
    display: flex;
    flex-direction: row;
    gap: 1.5rem;
    margin-top: 0.25rem;
}

.radio-label {
    display: inline-flex !important;
    align-items: center;
    gap: 0.4rem;
    font-weight: 400 !important;
    font-size: 0.9rem !important;
    cursor: pointer;
    color: var(--c-text) !important;
    padding: 0 !important;
    border: none !important;
    background: none !important;
    width: auto !important;
}

.radio-label input[type="radio"] { display: none; }

.radio-icon {
    width: 18px;
    height: 18px;
    border-radius: 4px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background: var(--c-surface);
    border: 1.5px solid var(--c-border);
    transition: all 0.15s var(--ease);
}

.radio-icon svg { opacity: 0; transition: opacity 0.15s var(--ease); }

.radio-label--yes input:checked ~ .radio-icon { background: var(--c-primary); border-color: var(--c-primary); }
.radio-label--yes input:checked ~ .radio-icon svg { opacity: 1; }
.radio-label--no input:checked ~ .radio-icon { background: #EF4444; border-color: #EF4444; }
.radio-label--no input:checked ~ .radio-icon svg { opacity: 1; }

/* Calendar Picker */
.calendar-picker {
    background: var(--c-bg);
    border: 1.5px solid var(--c-border);
    border-radius: var(--radius);
    padding: 1.25rem;
    user-select: none;
    transition: border-color var(--duration) var(--ease);
}

.calendar-picker:focus-within {
    border-color: var(--c-primary);
    box-shadow: 0 0 0 3px rgba(var(--c-primary-rgb), 0.1);
}

.calendar-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.calendar-month-year {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 1.05rem;
    color: var(--c-heading);
}

.calendar-nav {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: none;
    background: rgba(var(--c-primary-rgb), 0.08);
    color: var(--c-primary);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--duration) var(--ease);
}

.calendar-nav:hover {
    background: var(--c-primary);
    color: var(--c-white);
}

.calendar-weekdays {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    text-align: center;
    margin-bottom: 0.5rem;
}

.calendar-weekdays span {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--c-text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 0.25rem 0;
}

.calendar-days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 4px;
}

.calendar-day {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--c-text);
    cursor: pointer;
    transition: all var(--duration) var(--ease);
    border: none;
    background: none;
    font-family: 'Inter', sans-serif;
    position: relative;
}

.calendar-day:hover:not(.disabled):not(.selected) {
    background: rgba(var(--c-primary-rgb), 0.08);
    color: var(--c-primary);
}

.calendar-day.today:not(.selected) {
    border: 2px solid var(--c-primary);
    color: var(--c-primary);
    font-weight: 700;
}

.calendar-day.selected,
.calendar-day.selected.has-slots,
.calendar-day.selected.today {
    background: var(--c-primary);
    color: var(--c-white) !important;
    font-weight: 700;
    box-shadow: 0 2px 8px rgba(var(--c-primary-rgb), 0.3);
    border-color: var(--c-primary);
}

.calendar-day.disabled {
    color: var(--c-text-muted);
    cursor: default;
}

.calendar-day.past {
    color: var(--c-border);
    text-decoration: line-through;
    text-decoration-color: var(--c-surface-hover);
}

.calendar-day.no-slots {
    color: var(--c-text-muted);
    cursor: default;
}

.calendar-day.has-slots {
    position: relative;
    color: var(--c-heading);
    font-weight: 600;
}

.calendar-day.admin-set::after {
    content: '';
    position: absolute;
    bottom: 3px;
    left: 50%;
    transform: translateX(-50%);
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--c-accent);
}

.calendar-day.selected.admin-set::after {
    background: rgba(255,255,255,0.7);
}

.calendar-selected {
    font-size: 0.85rem;
    color: var(--c-text-light);
    margin-top: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.calendar-selected.has-date {
    color: var(--c-primary);
    font-weight: 600;
}

/* Time Slot Picker */
.time-slots {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.5rem;
}

.time-slots__empty {
    grid-column: 1 / -1;
    text-align: center;
    color: var(--c-text-muted);
    font-size: 0.9rem;
    padding: 1rem 0;
}

.time-slot {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
    padding: 0.65rem 0.5rem;
    border: 1.5px solid var(--c-border);
    border-radius: 8px;
    background: var(--c-bg);
    color: var(--c-text);
    font-family: 'Inter', sans-serif;
    font-size: 0.82rem;
    font-weight: 500;
    cursor: pointer;
    transition: all var(--duration) var(--ease);
}

.time-slot svg {
    flex-shrink: 0;
    opacity: 0.5;
    transition: opacity var(--duration) var(--ease);
}

.time-slot:hover {
    border-color: var(--c-primary);
    color: var(--c-primary);
    background: rgba(var(--c-primary-rgb), 0.05);
}

.time-slot:hover svg { opacity: 1; }

.time-slot.selected {
    background: var(--c-primary);
    border-color: var(--c-primary);
    color: var(--c-white);
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(var(--c-primary-rgb), 0.25);
}

.time-slot.selected svg { opacity: 1; }

.time-slot--past {
    opacity: 0.4;
    text-decoration: line-through;
    cursor: not-allowed;
    pointer-events: none;
}

/* Info Sidebar */
.booking-info-card {
    background: var(--c-bg);
    border-radius: var(--radius);
    padding: 2rem;
    box-shadow: var(--shadow);
    border: 1px solid var(--c-border);
}

.booking-info-card h3 {
    font-size: 1.15rem;
    margin-bottom: 1.25rem;
}

.booking-info-step {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 1.25rem;
    align-items: flex-start;
}

.booking-info-step__num {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(var(--c-primary-rgb), 0.1);
    color: var(--c-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.85rem;
    flex-shrink: 0;
}

.booking-info-step strong {
    display: block;
    font-size: 0.9rem;
    color: var(--c-heading);
    margin-bottom: 0.15rem;
}

.booking-info-step p {
    font-size: 0.82rem;
    color: var(--c-text-light);
    line-height: 1.4;
}

.booking-info-details {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--c-border);
}

.booking-info-details h4 {
    font-size: 0.95rem;
    margin-bottom: 0.75rem;
}

.booking-info-details p {
    font-size: 0.9rem;
    color: var(--c-text-light);
    margin-bottom: 0.3rem;
}

.booking-info-contact {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--c-border);
}

.booking-info-contact h4 {
    font-size: 0.95rem;
    margin-bottom: 0.75rem;
}

.booking-info-contact p {
    font-size: 0.9rem;
    margin-bottom: 0.3rem;
}

.booking-info-contact a {
    color: var(--c-primary);
    font-weight: 500;
}

.booking-info-contact a:hover { text-decoration: underline; }

/* Booking Confirmation Modal */
.booking-modal-overlay {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.6);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    backdrop-filter: blur(4px);
}

.booking-modal {
    background: var(--c-bg);
    border-radius: var(--radius-lg);
    max-width: 500px;
    width: 100%;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    animation: modalSlideIn 0.3s var(--ease);
}

@keyframes modalSlideIn {
    from { opacity: 0; transform: translateY(20px) scale(0.97); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

.booking-modal__header {
    background: var(--gradient);
    color: var(--c-white);
    padding: 2rem;
    text-align: center;
}

.booking-modal__header svg {
    margin-bottom: 0.5rem;
}

.booking-modal__header h2 {
    color: var(--c-white);
    font-size: 1.5rem;
    margin-bottom: 0.25rem;
}

.booking-modal__header p {
    color: rgba(255,255,255,0.85);
    font-size: 0.9rem;
}

.booking-modal__body {
    padding: 1.5rem 2rem;
}

.booking-modal__details {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 1.5rem;
}

.booking-modal__details td {
    padding: 0.5rem 0;
    font-size: 0.9rem;
}

.booking-modal__details td:first-child {
    color: var(--c-text-light);
    width: 110px;
}

.booking-modal__details td:last-child {
    text-align: right;
}

.booking-modal__divider td {
    border-top: 1px solid var(--c-border);
    padding-top: 0.75rem;
}

.booking-modal__status {
    display: inline-block;
    background: #DCFCE7;
    color: #166534;
    padding: 0.2rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.booking-modal__zoom-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    padding: 0.9rem;
    background: var(--c-primary);
    color: var(--c-white);
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: background var(--duration) var(--ease);
}

.booking-modal__zoom-btn:hover {
    background: var(--c-primary-dark);
}

.booking-modal__zoom-link {
    margin-top: 0.75rem;
    font-size: 0.78rem;
    color: var(--c-text-muted);
    text-align: center;
    word-break: break-all;
}

.booking-modal__zoom-link span {
    display: block;
    margin-bottom: 0.2rem;
}

.booking-modal__zoom-link a {
    color: var(--c-primary);
}

.booking-modal__footer {
    padding: 0 2rem 1.5rem;
    text-align: center;
}

.booking-modal__footer .btn {
    min-width: 120px;
}

/* Booking Responsive */
@media (max-width: 900px) {
    .booking-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .time-slots { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 480px) {
    .time-slots { grid-template-columns: repeat(2, 1fr); }
    .calendar-picker { padding: 1rem; }
    .calendar-day { font-size: 0.8rem; }
}

/* Reduced-motion overrides intentionally removed — animations should run regardless of OS setting */

/* =========================================================
   Migrated inline styles
   ========================================================= */

/* Common layout utilities */
.flex-col { display: flex; flex-direction: column; }
.flex-col-gap-sm { display: flex; flex-direction: column; gap: 0.6rem; }
.flex-col-gap-md { display: flex; flex-direction: column; gap: 1.5rem; }
.center-justify { justify-content: center; }
.text-muted-light { color: var(--c-text-light); }
.text-muted-xs { color: var(--c-text-muted); }
.text-white-soft { color: rgba(255,255,255,0.7); }
.text-white { color: var(--c-white); }

.stack-narrow { max-width: 600px; margin-left: auto; margin-right: auto; }
.stack-centered { max-width: 600px; margin: 0 auto; text-align: center; }
.stack-medium { max-width: 800px; margin: 0 auto; }
.stack-medium-top { max-width: 800px; margin: 2rem auto 0; }
.stack-wide { max-width: 900px; margin: 0 auto; }
.stack-wider { max-width: 1000px; margin: 0 auto; }

.divider-top-dashed { border-top: 1px dashed var(--c-border); margin-top: 1rem; padding-top: 1rem; }
.divider-top { padding-top: 2rem; border-top: 1px solid var(--c-border); }

/* Image helpers */
.img-rounded { border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); }

/* Page card patterns */
.card--feature { padding: 2rem; text-align: center; }
.card--feature-sm { padding: 1.75rem; text-align: center; }
.card--feature-tight { padding: 1.5rem; text-align: center; }
.card--feature-flex { padding: 2rem; text-align: center; display: flex; flex-direction: column; }
.card__emoji { font-size: 2rem; margin-bottom: 0.75rem; }
.card__numeral { font-size: 1.5rem; font-weight: 700; color: var(--c-primary); margin-bottom: 0.5rem; }
.card__addon-price { font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 1.25rem; color: var(--c-primary); margin-top: auto; padding-top: 1rem; }
.card__addon-price--flat { font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 1.25rem; color: var(--c-primary); margin-top: 1rem; }
.card__logo-wrap { margin-bottom: 0.75rem; }
.card__logo-label { font-weight: 600; font-size: 0.85rem; color: var(--c-heading); }

/* About */
.about-stat__value--white { color: var(--c-white); -webkit-text-fill-color: var(--c-white); }

/* Blog */
.blog-hero__title--sm { font-size: clamp(1.75rem, 4vw, 2.75rem); }
.blog-hero__meta { font-size: 0.95rem; }
.newsletter-form { max-width: 100%; }

/* Portfolio */
.portfolio-services { margin-top: 0.75rem; }
.portfolio-services__tag { font-size: 0.8rem; padding: 0.25rem 0.75rem; }

/* Order page */
.order-section-title { margin-bottom: 1rem; }
.order-form-wrap { background: var(--c-bg-alt); padding: 2rem; border-radius: var(--radius-lg); border: 1px solid var(--c-border); margin-bottom: 2rem; }
.order-form-wrap .form-group { margin-bottom: 1rem; }
.order-addon-hidden { display: none; }
.order-addon-note { color: var(--c-text-muted); font-size: 0.78rem; }
.order-price-main { font-weight: 600; color: var(--c-heading); }
.order-price-sub { font-size: 0.85rem; color: var(--c-text-muted); display: none; }
.order-price-note { font-size: 0.78rem; color: var(--c-text-muted); margin: 0.25rem 0 0; text-align: right; }

/* Booking tracking modal */
.booking-alert-spaced { margin-bottom: 2rem; }
.booking-website-hidden { display: none; }
.booking-submit-full { width: 100%; }
.booking-track-wrap { max-width: 600px; text-align: center; }
.booking-track-desc { color: var(--c-text-light); margin-bottom: 1.5rem; }
.booking-track-form { display: flex; gap: 0.75rem; justify-content: center; }
.booking-track-input { padding: 0.75rem 1rem; border: 2px solid var(--c-border); border-radius: var(--radius-full); font-size: 1rem; width: 280px; outline: none; transition: border-color 0.3s; font-family: inherit; }
.booking-track-input:focus { border-color: var(--c-primary); }
.booking-track-btn { padding: 0.75rem 2rem; }
.booking-track-error { color: #dc2626; margin-top: 0.75rem; display: none; }

.track-modal { display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: rgba(0,0,0,0.6); z-index: 9999; align-items: center; justify-content: center; backdrop-filter: blur(4px); }
.track-modal__card { background: #fff; border-radius: var(--radius-lg); max-width: 480px; width: 90%; overflow: hidden; box-shadow: var(--shadow-xl); animation: modalSlideIn 0.3s var(--ease); }
.track-modal__header { padding: 1.25rem 1.5rem; text-align: center; }
.track-modal__header h3 { margin: 0; color: #fff; }
.track-modal__body { padding: 1.5rem; }
.track-modal__table { width: 100%; border-collapse: collapse; }
.track-modal__zoom { display: none; text-align: center; margin-top: 1rem; }
.track-modal__zoom-btn { display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.7rem 1.5rem; }
.track-modal__response { display: none; background: #FEF9C3; padding: 12px; border-radius: 6px; margin-top: 1rem; font-size: 0.9rem; }
.track-modal__footer { padding: 0 1.5rem 1.5rem; text-align: center; }
.track-modal__close-btn { padding: 0.6rem 2rem; }

/* Contact page */
.contact-form-card { background: var(--c-bg-alt); padding: 2.5rem; border-radius: var(--radius-lg); border: 1px solid var(--c-border); }
.map-wrapper { border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--c-border); box-shadow: var(--shadow-md); }
.map-iframe { border: 0; display: block; }

/* Payment success */
.btn-spaced-top { margin-top: 1rem; }
.btn-spaced-top-lg { margin-top: 1.5rem; }
.payment-note { font-size: 0.9rem; color: var(--c-text-light); }

/* Admin shared */
.muted-dash { color: var(--gray-300); }
.admin-modal { display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: rgba(0,0,0,0.5); z-index: 9999; align-items: center; justify-content: center; }
.admin-modal__card { background: #fff; border-radius: 12px; padding: 2rem; max-width: 480px; width: 90%; }
.admin-modal__title { margin: 0 0 1rem; color: #0f172a; }
.admin-modal__textarea { width: 100%; padding: 0.75rem; border: 1px solid #ddd; border-radius: 8px; font-size: 0.95rem; resize: vertical; box-sizing: border-box; font-family: var(--font); }
.admin-modal__actions { display: flex; gap: 0.75rem; margin-top: 1rem; justify-content: flex-end; }
.admin-modal__btn-ghost { padding: 0.5rem 1.5rem; border: 1px solid #ddd; border-radius: 8px; background: #fff; cursor: pointer; font-family: var(--font); }
.admin-modal__btn-danger { padding: 0.5rem 1.5rem; border: none; border-radius: 8px; background: #ef4444; color: #fff; cursor: pointer; font-family: var(--font); font-weight: 600; }

.admin-two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; align-items: start; }
.admin-slot-hint { color: var(--gray-500); font-size: 0.85rem; margin-bottom: 1rem; }
.admin-slot-toggles-hidden { display: none; }
.admin-slot-actions { margin-top: 1rem; display: none; }
.admin-btn-auto { width: auto; padding: 0.6rem 2rem; }
.admin-logo-dot { color: #4f46e5; }
.admin-card--spaced { margin-bottom: 1.5rem; }
.admin-card__title { margin-bottom: 1rem; color: var(--gray-900); }
.admin-card__title--tight { margin-bottom: 0.75rem; color: var(--gray-900); }
.admin-card__timestamp { font-size: 0.85rem; color: var(--gray-500); }
.admin-link { color: var(--primary); }
.admin-notes-actions { margin-top: 0.75rem; text-align: right; }
.admin-muted-placeholder { color: var(--gray-300); }
.admin-row-clickable { cursor: pointer; }

/* Stagger max-width presets */
.stagger--narrow { max-width: 800px; margin: 2rem auto 0; }
.stagger--medium { max-width: 800px; margin: 0 auto; }
.stagger--wide { max-width: 900px; margin: 0 auto; }
.stagger--wider { max-width: 1000px; margin: 0 auto; }
.stagger--services { margin-top: 1.5rem; max-width: 760px; margin-left: auto; margin-right: auto; }

/* Small text helpers */
.text-sm-muted { color: var(--c-text-light); font-size: 0.925rem; }

/* Tracking iframe */
.gtm-iframe { display: none; visibility: hidden; }

/* Track modal rows (built dynamically) */
.track-row td { padding: 8px 0; }
.track-row__label { padding: 8px 0; color: #64748b; }
.track-row__value { padding: 8px 0; font-weight: 600; text-align: right; }
.track-row__value-plain { padding: 8px 0; text-align: right; }
.track-row__value-muted { padding: 8px 0; text-align: right; color: #94a3b8; font-size: 0.9rem; }
.track-row--bordered td { border-top: 1px solid #e2e8f0; }
.track-status-pill { color: #fff; padding: 3px 12px; border-radius: 20px; font-size: 0.85rem; font-weight: 600; }


/* ===== Order Page 2-Column Layout (summary + form) ===== */
.order-layout { display: grid; grid-template-columns: 1fr 1.4fr; gap: 3rem; align-items: start; max-width: 1100px; margin: 0 auto; }
.order-layout__summary { position: sticky; top: 100px; }
.order-summary-card { position: relative; background: #fff; border: 1px solid var(--c-border); border-radius: 24px; padding: 2rem 1.75rem; box-shadow: 0 24px 60px -20px rgba(79, 70, 229, 0.2); }
.order-summary-card::before { content: ''; position: absolute; inset: -2px; border-radius: 26px; padding: 2px; background: linear-gradient(135deg, #4f46e5, #06b6d4, #4f46e5); -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0); -webkit-mask-composite: xor; mask-composite: exclude; opacity: 0.4; pointer-events: none; }
.order-summary-card__header { text-align: center; margin-bottom: 0.75rem; }
.order-summary-card__label { display: block; font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 1.2rem; color: var(--c-heading); }
.order-summary-card__eyebrow { display: block; font-size: 0.8rem; color: var(--c-text-light); margin-top: 0.25rem; text-transform: uppercase; letter-spacing: 0.08em; }
.order-summary-card__price { text-align: center; display: flex; align-items: baseline; justify-content: center; gap: 0.3rem; margin: 0.75rem 0 0.35rem; font-family: 'Poppins', sans-serif; }
.order-summary-card__currency { font-size: 1.5rem; font-weight: 600; color: var(--c-text-light); }
.order-summary-card__amount { font-size: 3.25rem; font-weight: 900; line-height: 1; background: linear-gradient(135deg, #4f46e5, #06b6d4); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; letter-spacing: -0.03em; }
.order-summary-card__note { text-align: center; font-size: 0.82rem; color: var(--c-text-light); margin: 0 0 1.25rem; padding-bottom: 1.25rem; border-bottom: 1px dashed var(--c-border); }
.order-summary-card .price-summary { background: transparent; padding: 0; border: none; margin: 0 0 1rem; }
.order-summary-card .price-summary h3 { font-size: 0.95rem; margin: 0 0 0.75rem; color: var(--c-heading); }
.order-summary-card__trust { display: flex; flex-direction: column; gap: 0.4rem; padding-top: 1rem; border-top: 1px dashed var(--c-border); text-align: center; font-size: 0.78rem; color: var(--c-text-light); }

@media (max-width: 900px) {
  .order-layout { grid-template-columns: 1fr; gap: 2rem; }
  .order-layout__summary { position: static; order: 2; }
  .order-layout__form { order: 1; }
  .order-summary-card__amount { font-size: 2.75rem; }
}

/* ===== Atlas Chatbot Widget ===== */
.atlas-bot { position: fixed; bottom: 104px; right: 2rem; z-index: 950; font-family: 'Inter', sans-serif; }
.atlas-bot__toggle { position: relative; width: 60px; height: 60px; border-radius: 50%; background: linear-gradient(135deg, #4f46e5, #06b6d4); color: #fff; border: none; cursor: pointer; box-shadow: 0 12px 30px -6px rgba(79, 70, 229, 0.5); display: flex; align-items: center; justify-content: center; transition: transform 0.25s ease, box-shadow 0.25s ease; }
.atlas-bot__toggle:hover { transform: scale(1.08); box-shadow: 0 16px 36px -6px rgba(79, 70, 229, 0.65); }
.atlas-bot__toggle-close { display: none; }
.atlas-bot.is-open .atlas-bot__toggle-open { display: none; }
.atlas-bot.is-open .atlas-bot__toggle-close { display: block; }
.atlas-bot__toggle-dot { position: absolute; top: 8px; right: 8px; width: 12px; height: 12px; border-radius: 50%; background: #10b981; border: 2px solid #fff; box-shadow: 0 0 0 0 rgba(16,185,129,0.5); animation: atlas-bot-pulse 2s infinite; }
.atlas-bot.is-open .atlas-bot__toggle-dot { display: none; }
@keyframes atlas-bot-pulse { 0%, 100% { box-shadow: 0 0 0 0 rgba(16,185,129,0.55); } 50% { box-shadow: 0 0 0 8px rgba(16,185,129,0); } }

.atlas-bot__panel { position: absolute; bottom: 78px; right: 0; width: 380px; max-width: calc(100vw - 32px); height: 560px; max-height: calc(100vh - 140px); background: #fff; border-radius: 20px; border: 1px solid #e2e8f0; box-shadow: 0 24px 60px -12px rgba(15, 23, 42, 0.25); display: flex; flex-direction: column; overflow: hidden; opacity: 0; transform: translateY(20px) scale(0.95); pointer-events: none; transform-origin: bottom right; transition: opacity 0.25s ease, transform 0.25s ease; }
.atlas-bot.is-open .atlas-bot__panel { opacity: 1; transform: translateY(0) scale(1); pointer-events: auto; }

.atlas-bot__head { padding: 1rem 1.25rem; background: linear-gradient(135deg, #4f46e5, #06b6d4); color: #fff; }
.atlas-bot__head-info { display: flex; align-items: center; gap: 0.75rem; }
.atlas-bot__avatar { width: 40px; height: 40px; border-radius: 50%; background: rgba(255,255,255,0.2); display: flex; align-items: center; justify-content: center; font-family: 'Poppins', sans-serif; font-weight: 800; font-size: 1.1rem; border: 2px solid rgba(255,255,255,0.3); }
.atlas-bot__head-info strong { display: block; font-size: 1rem; font-weight: 700; }
.atlas-bot__head-info span { display: block; font-size: 0.78rem; color: rgba(255,255,255,0.85); margin-top: 0.1rem; }
.atlas-bot__online { display: inline-block; width: 7px; height: 7px; border-radius: 50%; background: #10b981; vertical-align: middle; margin-right: 0.3rem; }

.atlas-bot__messages { flex: 1; overflow-y: auto; padding: 1.25rem; display: flex; flex-direction: column; gap: 0.65rem; background: #f8fafc; }
.atlas-bot__msg { max-width: 85%; padding: 0.7rem 1rem; border-radius: 16px; font-size: 0.92rem; line-height: 1.5; }
.atlas-bot__msg p { margin: 0 0 0.5rem; }
.atlas-bot__msg p:last-child { margin-bottom: 0; }
.atlas-bot__msg a { color: inherit; text-decoration: underline; font-weight: 600; }
.atlas-bot__msg--bot { background: #fff; border: 1px solid #e2e8f0; color: #1e293b; align-self: flex-start; border-bottom-left-radius: 4px; }
.atlas-bot__msg--user { background: linear-gradient(135deg, #4f46e5, #06b6d4); color: #fff; align-self: flex-end; border-bottom-right-radius: 4px; }
.atlas-bot__msg--typing { display: flex; gap: 4px; padding: 0.9rem 1rem; }
.atlas-bot__msg--typing span { width: 7px; height: 7px; border-radius: 50%; background: #94a3b8; animation: atlas-bot-typing 1.2s infinite; }
.atlas-bot__msg--typing span:nth-child(2) { animation-delay: 0.15s; }
.atlas-bot__msg--typing span:nth-child(3) { animation-delay: 0.3s; }
@keyframes atlas-bot-typing { 0%, 60%, 100% { opacity: 0.3; transform: translateY(0); } 30% { opacity: 1; transform: translateY(-4px); } }
.atlas-bot__lead-saved { margin-top: 0.5rem; font-size: 0.78rem; color: #065f46; background: rgba(16,185,129,0.15); padding: 0.3rem 0.6rem; border-radius: 999px; display: inline-block; font-weight: 600; }

.atlas-bot__suggest { display: flex; flex-wrap: wrap; gap: 0.4rem; padding: 0 1.25rem 0.75rem; background: #f8fafc; }
.atlas-bot__chip { background: #fff; border: 1px solid #e2e8f0; border-radius: 999px; padding: 0.4rem 0.8rem; font-size: 0.78rem; color: #4f46e5; cursor: pointer; font-family: inherit; font-weight: 500; transition: all 0.2s ease; }
.atlas-bot__chip:hover { background: #eef2ff; border-color: #c7d2fe; }

.atlas-bot__form { display: flex; gap: 0.5rem; padding: 0.75rem 1rem; border-top: 1px solid #e2e8f0; background: #fff; }
.atlas-bot__input { flex: 1; padding: 0.65rem 0.9rem; border: 1px solid #e2e8f0; border-radius: 999px; font-family: inherit; font-size: 0.92rem; background: #f8fafc; outline: none; transition: border-color 0.2s ease, background 0.2s ease; }
.atlas-bot__input:focus { border-color: #4f46e5; background: #fff; }
.atlas-bot__send { width: 40px; height: 40px; border-radius: 50%; background: linear-gradient(135deg, #4f46e5, #06b6d4); color: #fff; border: none; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: transform 0.2s ease, opacity 0.2s ease; flex-shrink: 0; }
.atlas-bot__send:hover:not(:disabled) { transform: scale(1.08); }
.atlas-bot__send:disabled { opacity: 0.5; cursor: not-allowed; }

.atlas-bot__foot { margin: 0; padding: 0.6rem 1rem 0.75rem; border-top: 1px solid #e2e8f0; background: #fff; font-size: 0.76rem; color: #64748b; text-align: center; }
.atlas-bot__foot a { color: #4f46e5; text-decoration: none; font-weight: 600; }

@media (max-width: 500px) {
  .atlas-bot { bottom: 88px; right: 16px; }
  .atlas-bot__panel { bottom: 74px; right: -8px; width: calc(100vw - 16px); height: calc(100vh - 120px); border-radius: 16px; }
  .atlas-bot__toggle { width: 54px; height: 54px; }
}

/* ════════════════════════════════════════════════════════════════════════════
   AEO / Answer-First Block — Apr 2026
   Marks the extractable answer paragraph for LLM search engines (ChatGPT,
   Claude, Perplexity, Google AI Overviews) and voice assistants.
   Also targeted by SpeakableSpecification CSS selector in JSON-LD schema.
   ════════════════════════════════════════════════════════════════════════════ */

.answer {
  position: relative;
  background: linear-gradient(135deg, rgba(79,70,229,0.04), rgba(6,182,212,0.04));
  border: 1px solid rgba(79,70,229,0.18);
  border-left: 4px solid var(--c-primary);
  border-radius: var(--radius);
  padding: 1.5rem 1.75rem;
  margin: 0 auto;
  box-shadow: 0 2px 12px rgba(15,23,42,0.04);
}

.answer__label {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--c-primary);
  background: rgba(79,70,229,0.1);
  padding: 0.25rem 0.65rem;
  border-radius: var(--radius-full);
  margin-bottom: 0.75rem;
}

.answer p {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--c-text);
}

.answer p strong {
  color: var(--c-heading);
  font-weight: 700;
}

/* [data-speakable] is a pure marker for the SpeakableSpecification selector;
   no visual change beyond the .answer styling already applied. */
[data-speakable] {
  scroll-margin-top: var(--header-h, 80px);
}

@media (max-width: 600px) {
  .answer { padding: 1.25rem 1.25rem; }
  .answer p { font-size: 1rem; }
}

/* ═══════════════════════════════════════════════════════════════
   HOMEPAGE — source-positioning copy components
   (hero tag, rank-viz, answer-block, compare, feature-num,
    ai-mock, process-step, home-faq, eyebrow)
   ═══════════════════════════════════════════════════════════════ */

/* Hero tag (Booking projects for May—Jun 2026) */
.hero__tag { display: inline-flex; align-items: center; gap: 0.5rem; font-size: 0.8rem; font-weight: 500; text-transform: uppercase; letter-spacing: 0.12em; color: rgba(255,255,255,0.85); margin-bottom: 1.5rem; padding: 0.45rem 1.1rem; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.14); border-radius: var(--radius-full); }
.hero__tag-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--c-accent-light); box-shadow: 0 0 10px rgba(103,232,249,0.8); animation: tagDotPulse 2s ease-in-out infinite; }
@keyframes tagDotPulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.5; } }

/* Rank visualisation (47 → 3, Top 10) */
.rank-viz { display: inline-flex; align-items: center; gap: 1.25rem; margin-top: 2rem; padding: 1rem 1.5rem; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.12); border-radius: var(--radius-lg); flex-wrap: wrap; }
.rank-viz__meta { display: flex; flex-direction: column; gap: 0.15rem; }
.rank-viz__label { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.12em; color: rgba(255,255,255,0.55); }
.rank-viz__query { font-size: 0.85rem; color: rgba(255,255,255,0.85); font-style: italic; }
.rank-viz__numbers { display: flex; align-items: baseline; gap: 0.5rem; font-family: 'Poppins', sans-serif; font-weight: 700; }
.rank-viz__from { font-size: 1.4rem; color: rgba(255,255,255,0.4); text-decoration: line-through; }
.rank-viz__arrow { font-size: 1.2rem; color: rgba(255,255,255,0.6); }
.rank-viz__to { font-size: 2rem; background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.rank-viz__badge { font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: #67e8f9; padding: 0.3rem 0.7rem; background: rgba(103,232,249,0.12); border: 1px solid rgba(103,232,249,0.3); border-radius: var(--radius-full); }

/* Eyebrow (used by new sections) */
.eyebrow { display: inline-block; font-size: 0.78rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.18em; color: var(--c-primary); margin-bottom: 0.9rem; }
.eyebrow--center { display: block; text-align: center; }
.eyebrow--dot::before { content: "● "; color: #ef4444; margin-right: 0.3rem; }
.section--ink .eyebrow { color: var(--c-accent-light); }
.cta__eyebrow { color: var(--c-accent-light) !important; margin-bottom: 1rem; }

/* Section variants used by new sections */
.section--tight { padding: clamp(2.5rem, 5vw, 4rem) 0; }
.section--ink { background: var(--c-bg-dark); color: rgba(255,255,255,0.85); }
.section--ink .section__title { color: #fff; }
.section--ink .section__desc { color: rgba(255,255,255,0.7); }
.container--narrow { max-width: 820px; margin: 0 auto; padding: 0 1.5rem; }

/* "In short" answer-first block */
.answer-block { position: relative; padding: 2rem 2rem 2rem 2.25rem; background: var(--gradient-soft); border-left: 4px solid var(--c-primary); border-radius: var(--radius-lg); }
.answer-block__label { display: inline-block; font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.18em; color: var(--c-primary); margin-bottom: 0.75rem; }
.answer-block__text { font-size: clamp(1.05rem, 1.6vw, 1.2rem); line-height: 1.7; color: var(--c-heading); margin: 0; }
.answer-block__text strong { color: var(--c-primary); }

/* Compare cards (bad vs good) */
.compare { gap: 2rem; }
.compare-card { padding: 2rem; border-radius: var(--radius-lg); background: var(--c-white); box-shadow: var(--shadow-md); border-top: 4px solid; }
.compare-card--bad { border-top-color: #ef4444; }
.compare-card--good { border-top-color: #10b981; }
.compare-card__title { font-size: 1.35rem; margin-bottom: 1.25rem; font-family: 'Poppins', sans-serif; }
.compare-card--bad .compare-card__title { color: #b91c1c; }
.compare-card--good .compare-card__title { color: #047857; }
.compare-card__list { display: flex; flex-direction: column; gap: 0.75rem; }
.compare-card__list li { position: relative; padding-left: 1.75rem; font-size: 0.95rem; line-height: 1.55; color: var(--c-text); }
.compare-card--bad .compare-card__list li::before { content: "✕"; position: absolute; left: 0; top: 0; font-weight: 700; color: #ef4444; }
.compare-card--good .compare-card__list li::before { content: "✓"; position: absolute; left: 0; top: 0; font-weight: 700; color: #10b981; }

/* 6-feature numbered grid */
.features { gap: 2rem; }
.feature-num { position: relative; padding: 2rem 1.75rem 1.75rem; background: var(--c-bg-alt); border-radius: var(--radius-lg); border: 1px solid var(--c-border); transition: transform 0.25s ease, box-shadow 0.25s ease; }
.feature-num:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.feature-num__tag { display: inline-block; font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 1.5rem; background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; margin-bottom: 0.75rem; }
.feature-num__title { font-size: 1.2rem; margin-bottom: 0.6rem; color: var(--c-heading); }
.feature-num__desc { font-size: 0.95rem; line-height: 1.6; color: var(--c-text); margin: 0; }

/* AI mock demo (ChatGPT) */
.ai-mock { max-width: 760px; margin: 0 auto; padding: 1.75rem; background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.12); border-radius: var(--radius-lg); }
.ai-mock__head { display: flex; align-items: center; gap: 0.8rem; padding-bottom: 1.1rem; margin-bottom: 1.25rem; border-bottom: 1px solid rgba(255,255,255,0.08); }
.ai-mock__logo { width: 32px; height: 32px; border-radius: 8px; background: linear-gradient(135deg, #10a37f, #0e8268); color: #fff; display: flex; align-items: center; justify-content: center; font-weight: 700; font-family: 'Poppins', sans-serif; }
.ai-mock__name { font-size: 0.9rem; font-weight: 600; color: rgba(255,255,255,0.9); }
.ai-mock__badge { margin-left: auto; font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: #10b981; padding: 0.25rem 0.65rem; background: rgba(16,185,129,0.12); border: 1px solid rgba(16,185,129,0.3); border-radius: var(--radius-full); }
.ai-mock__question { font-size: 1rem; font-style: italic; color: rgba(255,255,255,0.75); margin-bottom: 1rem; padding-left: 1rem; border-left: 2px solid rgba(255,255,255,0.2); }
.ai-mock__answer { font-size: 1rem; line-height: 1.7; color: rgba(255,255,255,0.92); margin: 0; }
.ai-mock__cite { color: var(--c-accent-light); text-decoration: underline; text-underline-offset: 3px; }

/* 4-phase process */
.grid--4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
@media (max-width: 900px) { .grid--4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .grid--4 { grid-template-columns: 1fr; } }
.process-step { position: relative; padding: 1.75rem 1.5rem; background: var(--c-white); border-radius: var(--radius-lg); border: 1px solid var(--c-border); box-shadow: var(--shadow-sm); }
.process-step__num { display: inline-block; font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 0.85rem; color: var(--c-primary); padding: 0.25rem 0.7rem; background: rgba(79,70,229,0.08); border-radius: var(--radius-full); margin-bottom: 0.85rem; letter-spacing: 0.05em; }
.process-step__title { font-size: 1.15rem; margin-bottom: 0.55rem; color: var(--c-heading); }
.process-step__desc { font-size: 0.93rem; line-height: 1.55; color: var(--c-text); margin-bottom: 0.85rem; }
.process-step__duration { display: inline-block; font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; color: var(--c-text-light); }

/* Home FAQ accordion (uses native <details>) */
.home-faq { max-width: 820px; margin: 0 auto; display: flex; flex-direction: column; gap: 0.6rem; }
.home-faq__item { background: var(--c-white); border: 1px solid var(--c-border); border-radius: var(--radius); overflow: hidden; transition: box-shadow 0.2s ease; }
.home-faq__item[open] { box-shadow: var(--shadow-md); }
.home-faq__q { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 1.1rem 1.4rem; font-weight: 600; font-size: 1rem; color: var(--c-heading); cursor: pointer; list-style: none; }
.home-faq__q::-webkit-details-marker { display: none; }
.home-faq__icon { position: relative; width: 14px; height: 14px; flex-shrink: 0; }
.home-faq__icon::before, .home-faq__icon::after { content: ""; position: absolute; background: var(--c-primary); transition: transform 0.2s ease; }
.home-faq__icon::before { top: 50%; left: 0; right: 0; height: 2px; transform: translateY(-50%); }
.home-faq__icon::after { left: 50%; top: 0; bottom: 0; width: 2px; transform: translateX(-50%); }
.home-faq__item[open] .home-faq__icon::after { transform: translateX(-50%) rotate(90deg); opacity: 0; }
.home-faq__a { padding: 0 1.4rem 1.25rem; color: var(--c-text); line-height: 1.7; font-size: 0.95rem; }
.home-faq__a p { margin: 0; }

/* Pricing card additions */
.pricing-card__tagline { font-size: 0.95rem; color: var(--c-text-light); margin-bottom: 1rem; line-height: 1.5; }
.pricing-card__note { font-size: 0.8rem; color: var(--c-text-muted); text-align: center; margin-top: 0.85rem; }

@media (max-width: 600px) {
  .answer-block { padding: 1.5rem 1.5rem 1.5rem 1.75rem; }
  .answer-block__text { font-size: 1rem; }
  .compare { gap: 1.25rem; }
  .compare-card { padding: 1.5rem; }
  .feature-num { padding: 1.5rem 1.25rem; }
  .ai-mock { padding: 1.25rem; }
  .ai-mock__head { flex-wrap: wrap; }
  .rank-viz { gap: 0.75rem; padding: 0.85rem 1.1rem; }
  .rank-viz__to { font-size: 1.5rem; }
}

