/* ==========================================================================
   Make Dream Website — Frontend Stylesheet
   --------------------------------------------------------------------------
   Dark premium theme. No frameworks — hand-crafted CSS only.

   TABLE OF CONTENTS
   01. Design tokens (CSS custom properties)
   02. Reset & base
   03. Typography helpers & utilities
   04. Layout primitives (.container, .section, .section-head)
   05. Buttons
   06. Scroll-reveal system
   07. Header & navigation (desktop)
   08. Hamburger & mobile menu
   09. Hero section
   10. About section (bio + stats)
   11. Skills section
   12. Services section
   13. Pricing section
   14. Contact section (info + form)
   15. Footer
   16. Back-to-top button
   17. Keyframe animations
   18. Responsive — 1200px
   19. Responsive — 992px
   20. Responsive — 768px
   21. Responsive — 576px
   22. Reduced motion
   23. Print
   ========================================================================== */


/* ==========================================================================
   01. DESIGN TOKENS
   ========================================================================== */

:root {
    /* Surfaces & backgrounds */
    --bg: #070b14;                              /* page background, deep ink navy */
    --bg-soft: #0c1322;                         /* section alt background */
    --surface: rgba(255, 255, 255, 0.04);       /* glass card */
    --surface-border: rgba(255, 255, 255, 0.09);

    /* Text */
    --text: #e8ecf4;
    --text-muted: #93a0b4;

    /* Brand colors */
    --primary: #6366f1;
    --secondary: #8b5cf6;
    --accent: #22d3ee;
    --gradient: linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #22d3ee 100%);

    /* Shape & depth */
    --radius: 18px;
    --radius-sm: 12px;
    --radius-pill: 999px;
    --shadow: 0 20px 50px rgba(2, 6, 16, 0.5);
    --shadow-soft: 0 10px 30px rgba(2, 6, 16, 0.35);
    --glow-primary: 0 10px 32px rgba(99, 102, 241, 0.35);

    /* Typography */
    --font-display: 'Sora', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Motion */
    --ease: cubic-bezier(0.22, 1, 0.36, 1);
    --speed: 0.3s;

    /* Layout */
    --container-max: 1140px;
    --container-pad: 24px;
    --header-height: 76px;

    /* Feedback colors (form alerts) */
    --success: #34d399;
    --success-bg: rgba(52, 211, 153, 0.12);
    --success-border: rgba(52, 211, 153, 0.35);
    --danger: #f87171;
    --danger-bg: rgba(248, 113, 113, 0.12);
    --danger-border: rgba(248, 113, 113, 0.35);
}


/* ==========================================================================
   02. RESET & BASE
   ========================================================================== */

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    -webkit-text-size-adjust: 100%;
}

/* Native smooth scrolling ONLY as the no-JS fallback: when main.js runs it
   drives anchor scrolling with jQuery animate(), and the two mechanisms
   fight each other (every scrollTop step would start its own CSS smooth
   scroll, producing a stuttering "double-eased" effect). */
html.no-js {
    scroll-behavior: smooth;
}

/* Native fallback so anchor jumps (no-JS, or a #hash in the URL on load)
   never hide a section heading underneath the fixed header. */
section[id] {
    scroll-margin-top: calc(var(--header-height) + 12px);
}

/* Never allow horizontal scrolling — decorative elements are clipped instead */
html,
body {
    overflow-x: hidden;
    max-width: 100%;
}

body {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text);
    background-color: var(--bg);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    min-height: 100vh;
}

/* Subtle ambient gradient wash behind everything */
body::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -1;
    background:
        radial-gradient(900px 500px at 85% -10%, rgba(99, 102, 241, 0.10), transparent 60%),
        radial-gradient(700px 480px at -10% 40%, rgba(34, 211, 238, 0.06), transparent 60%),
        var(--bg);
    pointer-events: none;
}

img,
svg,
video {
    display: block;
    max-width: 100%;
    height: auto;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color var(--speed) var(--ease);
}

ul,
ol {
    list-style: none;
}

button {
    font: inherit;
    color: inherit;
    background: none;
    border: 0;
    cursor: pointer;
}

input,
textarea,
select {
    font: inherit;
    color: inherit;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.25;
    color: var(--text);
    overflow-wrap: break-word;
}

p {
    overflow-wrap: break-word;
}

::selection {
    background: rgba(139, 92, 246, 0.45);
    color: #ffffff;
}

/* Slim, theme-matched scrollbar (WebKit) */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: var(--bg-soft);
}
::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--primary), var(--secondary));
    border-radius: 8px;
}

/* Visible focus for keyboard users — never remove, only restyle */
:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 3px;
    border-radius: 4px;
}

/* Skip link: hidden until focused */
.skip-link {
    position: absolute;
    top: -60px;
    left: 16px;
    z-index: 2000;
    padding: 10px 18px;
    background: var(--primary);
    color: #ffffff;
    border-radius: 0 0 10px 10px;
    font-weight: 600;
    transition: top var(--speed) var(--ease);
}

.skip-link:focus {
    top: 0;
}


/* ==========================================================================
   03. TYPOGRAPHY HELPERS & UTILITIES
   ========================================================================== */

/* Gradient text — used in headings, the logo mark, hero highlight */
.grad-text {
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    display: inline-block;
}

/* Honeypot field: visually removed but still present in the DOM for bots.
   IMPORTANT: never use display:none — some bots skip hidden inputs. */
.hp-field {
    position: absolute !important;
    left: -9999px !important;
    top: auto !important;
    width: 1px !important;
    height: 1px !important;
    opacity: 0 !important;
    pointer-events: none !important;
    overflow: hidden !important;
}


/* ==========================================================================
   04. LAYOUT PRIMITIVES
   ========================================================================== */

.container {
    width: 100%;
    max-width: var(--container-max);
    margin-inline: auto;
    padding-inline: var(--container-pad);
}

.section {
    padding-block: 110px;
    position: relative;
}

/* Alternate section backgrounds for gentle rhythm */
.about,
.services,
.contact {
    background:
        linear-gradient(180deg, rgba(12, 19, 34, 0) 0%, var(--bg-soft) 12%, var(--bg-soft) 88%, rgba(12, 19, 34, 0) 100%);
}

/* Sections that sit directly on the ambient page background */
.skills,
.pricing {
    background: transparent;
}

/* Section header block: tag pill + title + subtitle */
.section-head {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 64px;
}

.section-tag {
    display: inline-block;
    padding: 7px 18px;
    margin-bottom: 16px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--accent);
    background: rgba(34, 211, 238, 0.08);
    border: 1px solid rgba(34, 211, 238, 0.25);
    border-radius: var(--radius-pill);
}

.section-title {
    font-size: clamp(1.75rem, 3.6vw, 2.6rem);
    font-weight: 800;
    margin-bottom: 14px;
}

.section-sub {
    color: var(--text-muted);
    font-size: 1.05rem;
}


/* ==========================================================================
   05. BUTTONS
   ========================================================================== */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 30px;
    font-family: var(--font-display);
    font-size: 0.95rem;
    font-weight: 600;
    line-height: 1;
    border-radius: var(--radius-pill);
    border: 1px solid transparent;
    cursor: pointer;
    white-space: nowrap;
    transition:
        transform var(--speed) var(--ease),
        box-shadow var(--speed) var(--ease),
        background-color var(--speed) var(--ease),
        border-color var(--speed) var(--ease),
        color var(--speed) var(--ease);
}

.btn i {
    font-size: 0.9em;
    transition: transform var(--speed) var(--ease);
}

/* Primary: gradient fill, lifts + glows on hover */
.btn-primary {
    background: var(--gradient);
    background-size: 160% 160%;
    color: #ffffff;
    box-shadow: 0 8px 24px rgba(99, 102, 241, 0.25);
}

.btn-primary:hover,
.btn-primary:focus-visible {
    transform: translateY(-3px);
    box-shadow: var(--glow-primary);
    color: #ffffff;
}

.btn-primary:hover i {
    transform: translateX(4px);
}

.btn-primary:active {
    transform: translateY(-1px);
}

/* Outline: glass border, fills on hover */
.btn-outline {
    background: transparent;
    color: var(--text);
    border-color: var(--surface-border);
    background-color: var(--surface);
}

.btn-outline:hover,
.btn-outline:focus-visible {
    transform: translateY(-3px);
    border-color: var(--primary);
    color: #ffffff;
    background-color: rgba(99, 102, 241, 0.14);
    box-shadow: 0 8px 24px rgba(99, 102, 241, 0.18);
}

/* Full-width button (pricing CTAs, form submit) */
.btn-block {
    width: 100%;
}

/* Disabled state — used while the contact form is sending */
.btn:disabled,
.btn.is-loading {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none !important;
}

/* Inline spinner injected by main.js while the form submits */
.spinner {
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 2px solid rgba(255, 255, 255, 0.35);
    border-top-color: #ffffff;
    border-radius: 50%;
    animation: spin 0.7s linear infinite;
    vertical-align: -3px;
}


/* ==========================================================================
   06. SCROLL-REVEAL SYSTEM
   --------------------------------------------------------------------------
   Progressive enhancement: content is fully visible with the default
   `no-js` class on <html>. main.js swaps it to `js`, and ONLY then are
   .reveal elements hidden, to be shown by IntersectionObserver adding
   .visible. If JS fails, nothing is ever hidden.
   ========================================================================== */

/* Explicit no-JS safety net: with the default `no-js` class on <html>,
   reveal elements are always fully visible (this mirrors the cascade
   default, stated here so the intent is unmissable). */
.no-js .reveal {
    opacity: 1;
    transform: none;
}

.js .reveal {
    opacity: 0;
    transform: translateY(30px);
    transition:
        opacity 0.7s var(--ease),
        transform 0.7s var(--ease);
    will-change: opacity, transform;
}

.js .reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger helpers — applied alongside .reveal */
.js .reveal-delay-1 { transition-delay: 0.12s; }
.js .reveal-delay-2 { transition-delay: 0.24s; }
.js .reveal-delay-3 { transition-delay: 0.36s; }


/* ==========================================================================
   07. HEADER & NAVIGATION (desktop)
   ========================================================================== */

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: transparent;
    transition:
        background-color var(--speed) var(--ease),
        box-shadow var(--speed) var(--ease),
        border-color var(--speed) var(--ease);
    border-bottom: 1px solid transparent;
}

/* Glass state after 50px of scroll (class toggled by main.js) */
.header.scrolled {
    background: rgba(7, 11, 20, 0.78);
    -webkit-backdrop-filter: blur(14px);
    backdrop-filter: blur(14px);
    border-bottom-color: var(--surface-border);
    box-shadow: 0 10px 30px rgba(2, 6, 16, 0.45);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    height: var(--header-height);
}

/* Logo */
.logo {
    display: inline-flex;
    align-items: baseline;
    gap: 6px;
    font-family: var(--font-display);
}

.logo-mark {
    font-size: 1.6rem;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.logo-text {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text);
}

/* Desktop nav */
.nav {
    display: flex;
    align-items: center;
    gap: 28px;
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 6px;
}

.nav-link {
    position: relative;
    display: inline-block;
    padding: 10px 14px;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-muted);
}

/* Gradient underline grows in on hover / active */
.nav-link::after {
    content: "";
    position: absolute;
    left: 14px;
    right: 14px;
    bottom: 4px;
    height: 2px;
    background: var(--gradient);
    border-radius: 2px;
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform var(--speed) var(--ease);
}

.nav-link:hover,
.nav-link.active {
    color: var(--text);
}

.nav-link:hover::after,
.nav-link.active::after {
    transform: scaleX(1);
}

/* Header CTA button — slightly more compact than regular buttons */
.nav-cta {
    padding: 11px 24px;
    font-size: 0.88rem;
}


/* ==========================================================================
   08. HAMBURGER & MOBILE MENU
   --------------------------------------------------------------------------
   Hidden on desktop; at ≤992px the nav becomes a fixed slide-in panel and
   the hamburger appears. body.menu-open (toggled by main.js) opens the
   panel, morphs the bars into an X and locks page scroll.
   ========================================================================== */

.hamburger {
    display: none;                /* shown at ≤992px */
    position: relative;
    z-index: 1102;
    width: 44px;
    height: 44px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    border-radius: 10px;
    background: var(--surface);
    border: 1px solid var(--surface-border);
}

.hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition:
        transform var(--speed) var(--ease),
        opacity var(--speed) var(--ease);
}

/* Bars → X */
body.menu-open .hamburger span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

body.menu-open .hamburger span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

body.menu-open .hamburger span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* Scroll lock while the panel is open.
   The lock MUST sit on <html>: overflow set on <body> no longer propagates
   to the viewport once the root element has overflow-x:hidden (see the
   global "html, body { overflow-x: hidden }" rule), so a body-only rule
   would leave the page scrollable behind the open menu. main.js toggles
   .menu-open on both elements. */
html.menu-open,
html.menu-open body {
    overflow: hidden;
}


/* ==========================================================================
   09. HERO SECTION
   ========================================================================== */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-top: calc(var(--header-height) + 40px);
    padding-bottom: 80px;
    overflow: hidden;             /* contains the drifting blobs */
}

/* --- Decorative gradient blobs ---------------------------------------- */

.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    opacity: 0.5;
    pointer-events: none;
    z-index: 0;
}

.blob-1 {
    width: 480px;
    height: 480px;
    top: -120px;
    right: -100px;
    background: radial-gradient(circle at 30% 30%, rgba(99, 102, 241, 0.55), transparent 70%);
    animation: blob-drift 22s ease-in-out infinite alternate;
}

.blob-2 {
    width: 420px;
    height: 420px;
    bottom: -140px;
    left: -120px;
    background: radial-gradient(circle at 60% 40%, rgba(139, 92, 246, 0.45), transparent 70%);
    animation: blob-drift 26s ease-in-out infinite alternate-reverse;
}

.blob-3 {
    width: 320px;
    height: 320px;
    top: 38%;
    left: 44%;
    background: radial-gradient(circle at 50% 50%, rgba(34, 211, 238, 0.30), transparent 70%);
    animation: blob-drift 30s ease-in-out infinite alternate;
}

/* --- Hero layout -------------------------------------------------------- */

.hero-inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    align-items: center;
    gap: 56px;
}

/* --- Hero content (left) ------------------------------------------------ */

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 9px 20px;
    margin-bottom: 26px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text);
    background: var(--surface);
    border: 1px solid var(--surface-border);
    border-radius: var(--radius-pill);
    -webkit-backdrop-filter: blur(14px);
    backdrop-filter: blur(14px);
}

/* Pulsing availability dot */
.pulse-dot {
    position: relative;
    width: 9px;
    height: 9px;
    flex-shrink: 0;
    border-radius: 50%;
    background: var(--success);
}

.pulse-dot::after {
    content: "";
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 2px solid var(--success);
    animation: pulse-ring 1.8s var(--ease) infinite;
}

.hero-title {
    font-size: clamp(2.1rem, 5vw, 3.6rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.15;
    margin-bottom: 22px;
}

.hero-sub {
    max-width: 540px;
    margin-bottom: 36px;
    font-size: 1.08rem;
    color: var(--text-muted);
}

.hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

/* --- Hero visual (right) ------------------------------------------------ */

.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    /* breathing room so the floating badges never clip */
    padding: 24px;
}

/* Portrait inside a rotating-feel gradient ring */
.hero-portrait {
    position: relative;
    width: min(380px, 78vw);
    aspect-ratio: 1 / 1;
    padding: 8px;                                /* ring thickness */
    border-radius: 50%;
    background: var(--gradient);
    box-shadow: var(--shadow), 0 0 70px rgba(99, 102, 241, 0.25);
}

.hero-portrait::before {
    /* soft halo behind the ring */
    content: "";
    position: absolute;
    inset: -26px;
    border-radius: 50%;
    border: 1px dashed rgba(255, 255, 255, 0.12);
    animation: spin 40s linear infinite;
    pointer-events: none;
}

.hero-portrait img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    border: 6px solid var(--bg);
}

/* Floating glass badge cards */
.float-card {
    position: absolute;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 20px;
    background: rgba(12, 19, 34, 0.72);
    border: 1px solid var(--surface-border);
    border-radius: var(--radius-sm);
    -webkit-backdrop-filter: blur(14px);
    backdrop-filter: blur(14px);
    box-shadow: var(--shadow-soft);
    animation: float 5s ease-in-out infinite;
}

.float-card-1 {
    top: 12%;
    left: -2%;
}

.float-card-2 {
    bottom: 9%;
    right: -2%;
    animation-delay: 2.4s;
}

.float-card-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    font-size: 1rem;
    color: #ffffff;
    background: var(--gradient);
    border-radius: 10px;
}

.float-card-text {
    display: flex;
    flex-direction: column;
    line-height: 1.3;
}

.float-card-text strong {
    font-family: var(--font-display);
    font-size: 0.98rem;
    color: var(--text);
}

.float-card-text small {
    font-size: 0.78rem;
    color: var(--text-muted);
}

/* --- Scroll-down indicator ---------------------------------------------- */

.scroll-down {
    position: absolute;
    left: 50%;
    bottom: 26px;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--text-muted);
}

.scroll-down:hover {
    color: var(--text);
}

.scroll-down-mouse {
    display: flex;
    justify-content: center;
    width: 26px;
    height: 42px;
    padding-top: 8px;
    border: 2px solid var(--text-muted);
    border-radius: 14px;
}

.scroll-down-wheel {
    width: 3px;
    height: 8px;
    border-radius: 3px;
    background: var(--accent);
    animation: scroll-wheel 1.8s ease-in-out infinite;
}

.scroll-down-label {
    font-size: 0.72rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}


/* ==========================================================================
   10. ABOUT SECTION
   ========================================================================== */

.about-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    align-items: center;
    gap: 60px;
    margin-bottom: 80px;
}

/* Image with gradient border + glow */
.about-media {
    position: relative;
}

.about-img-frame {
    position: relative;
    padding: 6px;                    /* gradient border thickness */
    border-radius: var(--radius);
    background: var(--gradient);
    box-shadow: var(--shadow), 0 0 60px rgba(139, 92, 246, 0.22);
}

.about-img-frame img {
    width: 100%;
    border-radius: calc(var(--radius) - 5px);
    object-fit: cover;
}

.about-text h3 {
    font-size: 1.45rem;
    margin-bottom: 18px;
}

.about-text p {
    color: var(--text-muted);
    margin-bottom: 16px;
}

/* Checkmark bullet list */
.about-points {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px 24px;
    margin: 24px 0 32px;
}

.about-points li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.95rem;
    color: var(--text);
}

.about-points i {
    color: var(--accent);
    margin-top: 5px;
    flex-shrink: 0;
}

/* --- Stat counters ------------------------------------------------------ */

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
}

.stat-card {
    padding: 34px 20px;
    text-align: center;
    background: var(--surface);
    border: 1px solid var(--surface-border);
    border-radius: var(--radius);
    -webkit-backdrop-filter: blur(14px);
    backdrop-filter: blur(14px);
    transition:
        transform var(--speed) var(--ease),
        border-color var(--speed) var(--ease),
        box-shadow var(--speed) var(--ease);
}

.stat-card:hover {
    transform: translateY(-6px);
    border-color: rgba(99, 102, 241, 0.45);
    box-shadow: var(--glow-primary);
}

.stat-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    margin-bottom: 16px;
    font-size: 1.25rem;
    color: #ffffff;
    background: var(--gradient);
    border-radius: 14px;
}

.stat-value {
    font-size: 2.2rem;
    font-weight: 800;
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.stat-label {
    margin-top: 6px;
    font-size: 0.92rem;
    color: var(--text-muted);
}

/* Counter digits keep a steady width while animating up */
.counter {
    font-variant-numeric: tabular-nums;
}


/* ==========================================================================
   11. SKILLS SECTION
   ========================================================================== */

.skills-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.skill-card {
    padding: 30px 28px;
    background: var(--surface);
    border: 1px solid var(--surface-border);
    border-radius: var(--radius);
    -webkit-backdrop-filter: blur(14px);
    backdrop-filter: blur(14px);
    transition:
        transform var(--speed) var(--ease),
        border-color var(--speed) var(--ease),
        box-shadow var(--speed) var(--ease);
}

.skill-card:hover {
    transform: translateY(-6px);
    border-color: rgba(99, 102, 241, 0.45);
    box-shadow: var(--shadow-soft);
}

.skill-head {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 12px;
}

.skill-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    flex-shrink: 0;
    font-size: 1.35rem;
    color: var(--accent);
    background: rgba(34, 211, 238, 0.08);
    border: 1px solid rgba(34, 211, 238, 0.2);
    border-radius: 12px;
    transition: transform var(--speed) var(--ease);
}

.skill-card:hover .skill-icon {
    transform: scale(1.08) rotate(-4deg);
}

.skill-name {
    font-size: 1.08rem;
    flex: 1;
    min-width: 0;
}

.skill-percent {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--accent);
}

.skill-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 18px;
}

/* Progress bar: track + animated gradient fill.
   main.js sets the fill width to data-percent when scrolled into view;
   the width transition below performs the actual animation. */
.skill-track {
    width: 100%;
    height: 8px;
    background: rgba(255, 255, 255, 0.07);
    border-radius: var(--radius-pill);
    overflow: hidden;
}

.skill-bar {
    width: 0;                                 /* animated to data-percent by JS */
    height: 100%;
    background: var(--gradient);
    border-radius: var(--radius-pill);
    transition: width 1.4s var(--ease);
    position: relative;
}

/* Soft glossy sheen on the fill */
.skill-bar::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.25), transparent 55%);
    border-radius: inherit;
}


/* ==========================================================================
   12. SERVICES SECTION
   ========================================================================== */

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.service-card {
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 36px 30px;
    background: var(--surface);
    border: 1px solid var(--surface-border);
    border-radius: var(--radius);
    -webkit-backdrop-filter: blur(14px);
    backdrop-filter: blur(14px);
    overflow: hidden;
    transition:
        transform var(--speed) var(--ease),
        border-color var(--speed) var(--ease),
        box-shadow var(--speed) var(--ease);
}

/* Gradient top border slides in on hover */
.service-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient);
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform 0.45s var(--ease);
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: rgba(99, 102, 241, 0.45);
    box-shadow: var(--glow-primary);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    margin-bottom: 22px;
    font-size: 1.5rem;
    color: #ffffff;
    background: var(--gradient);
    border-radius: 16px;
    box-shadow: 0 8px 22px rgba(99, 102, 241, 0.3);
    transition: transform var(--speed) var(--ease);
}

.service-card:hover .service-icon {
    transform: scale(1.08) rotate(-5deg);
}

.service-title {
    font-size: 1.18rem;
    margin-bottom: 12px;
}

.service-desc {
    font-size: 0.93rem;
    color: var(--text-muted);
    margin-bottom: 22px;
    flex: 1;                       /* pushes the link to the card bottom */
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-display);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--accent);
}

.service-link span {
    transition: transform var(--speed) var(--ease);
}

.service-link:hover {
    color: #ffffff;
}

.service-link:hover span {
    transform: translateX(5px);
}


/* ==========================================================================
   13. PRICING SECTION
   ========================================================================== */

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: stretch;
    gap: 24px;
}

.price-card {
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 42px 32px;
    background: var(--surface);
    border: 1px solid var(--surface-border);
    border-radius: var(--radius);
    -webkit-backdrop-filter: blur(14px);
    backdrop-filter: blur(14px);
    transition:
        transform var(--speed) var(--ease),
        border-color var(--speed) var(--ease),
        box-shadow var(--speed) var(--ease);
}

.price-card:hover {
    transform: translateY(-8px);
    border-color: rgba(99, 102, 241, 0.4);
    box-shadow: var(--shadow-soft);
}

/* Featured plan: scaled up with a gradient border (mask trick keeps the
   glass body intact while only the border shows the gradient). */
.price-card.popular {
    transform: scale(1.05);
    z-index: 1;
    border-color: transparent;
    background:
        linear-gradient(var(--bg-soft), var(--bg-soft)) padding-box,
        var(--gradient) border-box;
    border: 2px solid transparent;
    box-shadow: var(--glow-primary);
}

.price-card.popular:hover {
    transform: scale(1.05) translateY(-8px);
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    padding: 7px 20px;
    font-family: var(--font-display);
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #ffffff;
    background: var(--gradient);
    border-radius: var(--radius-pill);
    box-shadow: 0 8px 20px rgba(139, 92, 246, 0.4);
    white-space: nowrap;
}

.price-plan {
    font-size: 1.2rem;
    margin-bottom: 6px;
}

.price-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 22px;
}

.price-amount {
    display: flex;
    align-items: flex-start;
    gap: 4px;
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 28px;
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.price-currency {
    font-size: 1.4rem;
    margin-top: 6px;
}

.price-features {
    display: flex;
    flex-direction: column;
    gap: 13px;
    margin-bottom: 34px;
    flex: 1;                        /* equal-height cards, CTA pinned bottom */
}

.price-features li {
    display: flex;
    align-items: flex-start;
    gap: 11px;
    font-size: 0.93rem;
    color: var(--text-muted);
}

.price-features i {
    margin-top: 5px;
    font-size: 0.8rem;
    color: var(--accent);
    flex-shrink: 0;
}

.pricing-note {
    margin-top: 40px;
    text-align: center;
    font-size: 0.92rem;
    color: var(--text-muted);
}

.pricing-note a {
    color: var(--accent);
    font-weight: 600;
}

.pricing-note a:hover {
    text-decoration: underline;
}


/* ==========================================================================
   14. CONTACT SECTION
   ========================================================================== */

.contact-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
    gap: 40px;
    align-items: start;
}

/* --- Info cards (left) -------------------------------------------------- */

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.info-card {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 24px;
    background: var(--surface);
    border: 1px solid var(--surface-border);
    border-radius: var(--radius);
    -webkit-backdrop-filter: blur(14px);
    backdrop-filter: blur(14px);
    transition:
        transform var(--speed) var(--ease),
        border-color var(--speed) var(--ease);
}

.info-card:hover {
    transform: translateX(6px);
    border-color: rgba(99, 102, 241, 0.4);
}

.info-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    flex-shrink: 0;
    font-size: 1.2rem;
    color: #ffffff;
    background: var(--gradient);
    border-radius: 14px;
}

.info-body {
    min-width: 0;                  /* allow long emails to wrap, not overflow */
}

.info-body h3 {
    font-size: 1rem;
    margin-bottom: 4px;
}

.info-body p,
.info-body a {
    font-size: 0.92rem;
    color: var(--text-muted);
    word-break: break-word;
}

.info-body a:hover {
    color: var(--accent);
}

/* Social icon row */
.social-row {
    display: flex;
    gap: 14px;
    margin-top: 8px;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    font-size: 1.05rem;
    color: var(--text-muted);
    background: var(--surface);
    border: 1px solid var(--surface-border);
    border-radius: 12px;
    transition:
        transform var(--speed) var(--ease),
        color var(--speed) var(--ease),
        background-color var(--speed) var(--ease),
        border-color var(--speed) var(--ease),
        box-shadow var(--speed) var(--ease);
}

.social-link:hover,
.social-link:focus-visible {
    transform: translateY(-4px);
    color: #ffffff;
    background: rgba(99, 102, 241, 0.2);
    border-color: var(--primary);
    box-shadow: 0 8px 20px rgba(99, 102, 241, 0.25);
}

/* --- Contact form (right) ------------------------------------------------ */

.contact-form {
    padding: 38px 34px;
    background: var(--surface);
    border: 1px solid var(--surface-border);
    border-radius: var(--radius);
    -webkit-backdrop-filter: blur(14px);
    backdrop-filter: blur(14px);
    box-shadow: var(--shadow-soft);
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
}

.form-group {
    margin-bottom: 20px;
    min-width: 0;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-family: var(--font-display);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    font-size: 0.95rem;
    color: var(--text);
    background: rgba(7, 11, 20, 0.55);
    border: 1px solid var(--surface-border);
    border-radius: var(--radius-sm);
    outline: none;
    transition:
        border-color var(--speed) var(--ease),
        box-shadow var(--speed) var(--ease),
        background-color var(--speed) var(--ease);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(147, 160, 180, 0.55);
}

/* iOS Safari auto-zooms the viewport when focusing any control whose
   font-size is below 16px — keep inputs at a full 1rem on small screens. */
@media (max-width: 768px) {
    .form-group input,
    .form-group textarea {
        font-size: 1rem;
    }
}

/* Focus glow */
.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--primary);
    background: rgba(7, 11, 20, 0.8);
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.22);
}

.form-group textarea {
    resize: vertical;
    min-height: 140px;
}

/* Invalid state (class added by main.js validation) */
.form-group input.input-error,
.form-group textarea.input-error {
    border-color: var(--danger);
    box-shadow: 0 0 0 3px rgba(248, 113, 113, 0.15);
}

/* Per-field error message under each input */
.field-error {
    display: block;
    min-height: 0;
    margin-top: 6px;
    font-size: 0.8rem;
    color: var(--danger);
}

.field-error:empty {
    margin-top: 0;
}

/* Success / error banner above the form fields */
.form-alert {
    padding: 14px 18px;
    margin-bottom: 22px;
    font-size: 0.92rem;
    font-weight: 500;
    border-radius: var(--radius-sm);
    border: 1px solid transparent;
}

.form-alert.success {
    color: var(--success);
    background: var(--success-bg);
    border-color: var(--success-border);
}

.form-alert.error {
    color: var(--danger);
    background: var(--danger-bg);
    border-color: var(--danger-border);
}

.btn-submit {
    width: 100%;
    margin-top: 6px;
    padding-block: 16px;
}

.btn-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}


/* ==========================================================================
   15. FOOTER
   ========================================================================== */

.footer {
    border-top: 1px solid var(--surface-border);
    background: var(--bg-soft);
}

.footer-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr) minmax(0, 1fr);
    gap: 48px;
    padding-block: 70px 54px;
}

.footer-brand p {
    margin-top: 18px;
    max-width: 320px;
    font-size: 0.93rem;
    color: var(--text-muted);
}

.footer-col h4 {
    font-size: 1rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

/* Small gradient underline under column headings */
.footer-col h4::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 34px;
    height: 2px;
    border-radius: 2px;
    background: var(--gradient);
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 11px;
}

.footer-col a {
    display: inline-block;
    font-size: 0.92rem;
    color: var(--text-muted);
    transition:
        color var(--speed) var(--ease),
        transform var(--speed) var(--ease);
}

.footer-col a:hover {
    color: var(--accent);
    transform: translateX(4px);
}

.footer-bottom {
    padding-block: 22px;
    border-top: 1px solid var(--surface-border);
    text-align: center;
}

.footer-bottom p {
    font-size: 0.88rem;
    color: var(--text-muted);
}


/* ==========================================================================
   16. BACK-TO-TOP BUTTON
   ========================================================================== */

.back-to-top {
    position: fixed;
    right: 26px;
    bottom: 26px;
    z-index: 900;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    font-size: 1rem;
    color: #ffffff;
    background: var(--gradient);
    border-radius: 14px;
    box-shadow: var(--glow-primary);
    opacity: 0;
    visibility: hidden;
    transform: translateY(16px);
    transition:
        opacity var(--speed) var(--ease),
        visibility var(--speed) var(--ease),
        transform var(--speed) var(--ease),
        box-shadow var(--speed) var(--ease);
}

/* Shown after 400px of scroll (class toggled by main.js) */
.back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 36px rgba(99, 102, 241, 0.45);
}


/* ==========================================================================
   17. KEYFRAME ANIMATIONS
   ========================================================================== */

/* Slow organic drift for hero blobs */
@keyframes blob-drift {
    0% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(40px, -30px) scale(1.08);
    }
    66% {
        transform: translate(-30px, 30px) scale(0.94);
    }
    100% {
        transform: translate(20px, -15px) scale(1.04);
    }
}

/* Gentle bobbing for hero badge cards */
@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-14px);
    }
}

/* Expanding ring on the availability dot */
@keyframes pulse-ring {
    0% {
        transform: scale(0.6);
        opacity: 1;
    }
    80%, 100% {
        transform: scale(1.7);
        opacity: 0;
    }
}

/* Mouse wheel in the scroll-down indicator */
@keyframes scroll-wheel {
    0% {
        transform: translateY(0);
        opacity: 1;
    }
    70% {
        transform: translateY(12px);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 0;
    }
}

/* Generic rotation — spinner + portrait halo */
@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}


/* ==========================================================================
   18. RESPONSIVE — ≤1200px (small desktop / large laptop)
   ========================================================================== */

@media (max-width: 1200px) {

    .container {
        max-width: 1000px;
    }

    .section {
        padding-block: 96px;
    }

    .hero-inner {
        gap: 40px;
    }

    .hero-portrait {
        width: min(340px, 70vw);
    }

    .float-card {
        padding: 12px 16px;
    }

    .skills-grid,
    .services-grid {
        gap: 20px;
    }
}


/* ==========================================================================
   19. RESPONSIVE — ≤992px (tablet landscape; mobile nav kicks in)
   ========================================================================== */

@media (max-width: 992px) {

    /* --- Mobile navigation panel ---------------------------------------- */

    .hamburger {
        display: flex;
    }

    .nav {
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        z-index: 1100;
        width: min(320px, 82vw);
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        gap: 18px;
        padding: calc(var(--header-height) + 24px) 32px 40px;
        background: rgba(12, 19, 34, 0.96);
        -webkit-backdrop-filter: blur(18px);
        backdrop-filter: blur(18px);
        border-left: 1px solid var(--surface-border);
        box-shadow: var(--shadow);
        transform: translateX(105%);
        /* visibility:hidden removes the closed panel's links from the tab
           order and from screen readers (transformed-offscreen elements stay
           focusable otherwise). The 0s/0.4s visibility delay keeps the slide
           animation intact: hide only AFTER sliding out, show BEFORE sliding in. */
        visibility: hidden;
        transition:
            transform 0.4s var(--ease),
            visibility 0s linear 0.4s;
        overflow-y: auto;
    }

    body.menu-open .nav {
        transform: translateX(0);
        visibility: visible;
        transition:
            transform 0.4s var(--ease),
            visibility 0s linear 0s;
    }

    .nav-list {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
        width: 100%;
    }

    .nav-list li {
        width: 100%;
    }

    .nav-link {
        display: block;
        width: 100%;
        padding: 13px 10px;
        font-size: 1.05rem;
        border-radius: 10px;
    }

    .nav-link::after {
        left: 10px;
        right: auto;
        width: 28px;
        bottom: 6px;
    }

    .nav-link:hover,
    .nav-link.active {
        background: var(--surface);
    }

    .nav-cta {
        width: 100%;
        margin-top: 10px;
    }

    /* --- Hero stacks ------------------------------------------------------ */

    .hero {
        min-height: auto;
        padding-top: calc(var(--header-height) + 56px);
        padding-bottom: 110px;
        text-align: center;
    }

    .hero-inner {
        grid-template-columns: minmax(0, 1fr);
        gap: 64px;
    }

    .hero-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        order: 1;
    }

    .hero-visual {
        order: 2;
    }

    .hero-sub {
        margin-inline: auto;
    }

    .hero-cta {
        justify-content: center;
    }

    .float-card-1 {
        left: 4%;
    }

    .float-card-2 {
        right: 4%;
    }

    /* --- Grids collapse ---------------------------------------------------- */

    .about-grid {
        grid-template-columns: minmax(0, 1fr);
        gap: 48px;
        margin-bottom: 64px;
    }

    .about-media {
        max-width: 520px;
        margin-inline: auto;
        width: 100%;
    }

    .stats-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 20px;
    }

    .skills-grid,
    .services-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .pricing-grid {
        grid-template-columns: minmax(0, 1fr);
        max-width: 480px;
        margin-inline: auto;
        gap: 36px;
    }

    /* Featured card no longer needs the scale once cards are stacked */
    .price-card.popular {
        transform: scale(1);
    }

    .price-card.popular:hover {
        transform: translateY(-8px);
    }

    .contact-grid {
        grid-template-columns: minmax(0, 1fr);
        gap: 36px;
    }

    .footer-grid {
        grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
        gap: 40px;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }
}


/* ==========================================================================
   20. RESPONSIVE — ≤768px (tablet portrait / large phones)
   ========================================================================== */

@media (max-width: 768px) {

    .section {
        padding-block: 80px;
    }

    .section-head {
        margin-bottom: 48px;
    }

    .hero-portrait {
        width: min(300px, 72vw);
    }

    .float-card {
        gap: 10px;
        padding: 10px 14px;
    }

    .float-card-icon {
        width: 34px;
        height: 34px;
        font-size: 0.85rem;
    }

    .float-card-text strong {
        font-size: 0.88rem;
    }

    .float-card-text small {
        font-size: 0.72rem;
    }

    /* Blobs scaled down so they never push layout on small screens */
    .blob-1 {
        width: 320px;
        height: 320px;
    }

    .blob-2 {
        width: 280px;
        height: 280px;
    }

    .blob-3 {
        width: 200px;
        height: 200px;
    }

    .skills-grid,
    .services-grid {
        grid-template-columns: minmax(0, 1fr);
        max-width: 480px;
        margin-inline: auto;
    }

    .about-points {
        grid-template-columns: minmax(0, 1fr);
    }

    .contact-form {
        padding: 30px 24px;
    }

    .form-row {
        grid-template-columns: minmax(0, 1fr);
        gap: 0;
    }

    .footer-grid {
        padding-block: 56px 44px;
    }
}


/* ==========================================================================
   21. RESPONSIVE — ≤576px (phones)
   ========================================================================== */

@media (max-width: 576px) {

    :root {
        --container-pad: 16px;        /* tighter gutters on small phones */
    }

    .section {
        padding-block: 68px;
    }

    .hero {
        padding-top: calc(var(--header-height) + 40px);
    }

    .hero-badge {
        font-size: 0.78rem;
        padding: 8px 16px;
    }

    .hero-cta {
        width: 100%;
        flex-direction: column;
    }

    .hero-cta .btn {
        width: 100%;
    }

    .hero-portrait {
        width: min(250px, 76vw);
    }

    .hero-portrait::before {
        inset: -16px;
    }

    .float-card-1 {
        left: 0;
        top: 6%;
    }

    .float-card-2 {
        right: 0;
        bottom: 4%;
    }

    .scroll-down {
        display: none;                /* not useful on short viewports */
    }

    .stats-grid {
        grid-template-columns: minmax(0, 1fr);
    }

    .stat-card {
        padding: 28px 18px;
    }

    .skill-card,
    .service-card {
        padding: 26px 22px;
    }

    .price-card {
        padding: 36px 24px;
    }

    .info-card {
        padding: 20px;
    }

    .contact-form {
        padding: 26px 18px;
    }

    .footer-grid {
        grid-template-columns: minmax(0, 1fr);
        gap: 36px;
    }

    .back-to-top {
        right: 16px;
        bottom: 16px;
        width: 44px;
        height: 44px;
    }
}


/* ==========================================================================
   22. REDUCED MOTION
   --------------------------------------------------------------------------
   Users who prefer reduced motion get a fully static experience: no blob
   drift, no floating, no pulsing, no reveal slide — content simply shows.
   ========================================================================== */

@media (prefers-reduced-motion: reduce) {

    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        transition-delay: 0ms !important;
        scroll-behavior: auto !important;
    }

    /* Reveal elements must be readable immediately */
    .js .reveal {
        opacity: 1;
        transform: none;
    }

    .blob,
    .float-card,
    .pulse-dot::after,
    .scroll-down-wheel,
    .hero-portrait::before {
        animation: none !important;
    }
}


/* ==========================================================================
   23. PRINT
   --------------------------------------------------------------------------
   Strip the dark theme and chrome so a printed page stays legible.
   ========================================================================== */

@media print {

    body {
        background: #ffffff;
        color: #111111;
    }

    body::before,
    .header,
    .blob,
    .scroll-down,
    .back-to-top,
    .hamburger,
    .contact-form,
    .float-card {
        display: none !important;
    }

    .section {
        padding-block: 24px;
    }

    .js .reveal {
        opacity: 1 !important;
        transform: none !important;
    }

    .grad-text,
    .stat-value,
    .price-amount {
        -webkit-text-fill-color: initial;
        background: none;
        color: #111111;
    }

    h1, h2, h3, h4 {
        color: #111111;
    }

    p,
    li,
    .section-sub,
    .hero-sub {
        color: #333333;
    }

    a {
        color: #1a1aa6;
        text-decoration: underline;
    }
}
