/* ===================================
   CSS Variables & Reset
   =================================== */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&display=swap');

:root {
    /* Brand Colors */
    --color-primary: #d66943;
    --color-primary-dark: #984b2d;
    --color-primary-light: #e7633a;
    /* Keeping old primary as light/accent if needed, or adjusting */
    --color-secondary: #f1e4d2;

    /* Neutral Colors */
    --color-white: #ffffff;
    --color-black: #303030;
    --color-gray-dark: #4a4a4a;
    --color-gray: #6b6b6b;
    --color-gray-light: #e5e5e5;
    --color-gray-lighter: #f9f9f9;

    /* Typography */
    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Poppins', sans-serif;
    --font-hero: 'Poppins', sans-serif;

    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-2xl: 4rem;
    --spacing-3xl: 6rem;

    /* Layout */
    --container-width: 1200px;
    --header-height: 72px;

    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.12);

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;
    --hero-spot-x: 50%;
    --hero-spot-y: 50%;
}

/* ===================================
   Reset & Base Styles
   =================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-gray-dark);
    background-color: var(--color-white);
    font-weight: 400;
    overflow-x: hidden;
    width: 100%;
    position: relative;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.no-scroll {
    overflow: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    color: var(--color-black);
    margin-bottom: var(--spacing-md);
}

strong,
b {
    font-weight: 700;
    color: var(--color-black);
}

p {
    margin-bottom: var(--spacing-md);
    font-weight: 400;
}

.section__description,
.hero__description,
.page-hero__description {
    font-weight: 300;
    color: var(--color-text);
    /* Ensure good contrast but keep it light */
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

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

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

ul {
    list-style: none;
}

/* ===================================
   Utility Classes
   =================================== */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

.section {
    padding: var(--spacing-lg) 0;
    position: relative;
    overflow: hidden;
}

.section--compact {
    padding-top: var(--spacing-md);
    padding-bottom: var(--spacing-md);
}

.text-center {
    text-align: center;
}

.text-underline {
    position: relative;
    display: inline-block;
}

.text-underline::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 100%;
    height: 12px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 500 40'%3E%3Cpath d='M0,20 Q25,5 50,20 T100,20 T150,20 T200,20 T250,20 T300,20 T350,20 T400,20 T450,20 T500,20' stroke='%2300d4d4' stroke-width='8' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: repeat-x;
    background-size: auto 100%;
    background-position: center;
}

/* ===================================
   Buttons
   =================================== */
.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: var(--radius-full);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all var(--transition-base);
    border: 2px solid transparent;
    text-align: center;
}

.btn--primary {
    background: var(--color-white);
    color: var(--color-primary);
    border-color: var(--color-white);
}

.btn--primary:hover {
    background: var(--color-secondary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn--secondary {
    background: var(--color-white);
    color: var(--color-primary);
    border-color: var(--color-white);
}

.btn--secondary:hover {
    background: var(--color-secondary);
    transform: translateY(-2px);
}

.btn--outline {
    background: transparent;
    color: var(--color-white);
    border-color: var(--color-white);
}

.btn--outline:hover {
    background: var(--color-white);
    color: var(--color-primary);
}

.btn--large {
    padding: 18px 40px;
    font-size: 1.125rem;
}

/* Text Button (Navbar) */
.btn--text {
    background: transparent;
    color: var(--color-primary);
    border: none;
    padding: 8px 0;
    font-weight: 600;
}

.btn--text:hover {
    color: var(--color-primary-dark);
}

/* ===================================
   Header & Navigation
   =================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    max-width: 100vw;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: saturate(180%) blur(8px);
    z-index: 1000;
    transition: var(--transition-base);
    box-shadow: var(--shadow-sm);
}

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

.nav__logo {
    display: flex;
    align-items: center;
    z-index: 1001;
}

.logo-img {
    height: 32px;
    width: auto;
}

.nav__menu {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
}

.nav__list {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
}

.nav__link {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--color-gray-dark);
    display: flex;
    align-items: center;
    gap: 4px;
    position: relative;
    padding-bottom: 6px;
}

.nav__link::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background: var(--color-primary);
    transition: width var(--transition-base);
}

.nav__link:hover::after {
    width: 100%;
}

.nav__link:hover {
    color: var(--color-primary);
}

.dropdown-icon {
    font-size: 0.7rem;
    transition: var(--transition-fast);
    position: relative;
    top: 1px;
    margin-left: 4px;
}

.dropdown:hover .dropdown-icon {
    transform: rotate(180deg);
}

.nav__close {
    display: none;
}

.nav__actions {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
}

.nav__toggle {
    display: none;
    cursor: pointer;
}

/* Dropdown Menu */
.dropdown {
    position: relative;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    background: var(--color-white);
    box-shadow: var(--shadow-lg);
    border-radius: var(--radius-md);
    padding: var(--spacing-xs) 0;
    min-width: 220px;
    z-index: 1000;
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.dropdown:hover .dropdown-menu {
    display: block;
}

.dropdown-link {
    display: block;
    padding: var(--spacing-sm) var(--spacing-md);
    color: var(--color-gray-dark);
    font-weight: 500;
    transition: var(--transition-fast);
}

.dropdown-link:hover {
    background: var(--color-gray-lighter);
    color: var(--color-primary);
}

.dropdown-link+.dropdown-link {
    border-top: 1px solid #f0f0f0;
}

/* ===================================
   Hero Section
   =================================== */
.hero {
    position: relative;
    background: var(--color-primary);
    min-height: calc(100vh - var(--header-height));
    display: flex;
    align-items: center;
    padding-top: var(--header-height);
    padding-bottom: 0;
    overflow: visible;
}

.hero--mesh {
    background:
        radial-gradient(circle at 20% 20%, rgba(231, 99, 58, 0.35) 0%, rgba(214, 105, 67, 0.25) 40%, transparent 70%),
        linear-gradient(135deg, #e56b4c 0%, #c04b2f 100%);
    overflow: hidden;
}

/* Saasy-like clean hero variant */
.hero--saasy {
    background: linear-gradient(135deg, #e56b4c 0%, #c04b2f 100%);
}

.hero--saasy::before,
.hero--saasy::after {
    content: none;
}

.hero--saasy::before {
    content: none;
}

.hero--saasy::after {
    content: none;
}

.hero--saasy .hero__container {
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero--mesh .hero__title {
    color: var(--color-white);
    font-size: 2.75rem;
}

.hero__title .accent {
    background: linear-gradient(135deg, #fff4e1 0%, #ffe3c4 60%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-style: italic;
}

.accent-gradient {
    background: linear-gradient(135deg, #fff4e1 0%, #ffe3c4 60%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-style: italic;
}

.hero__content::before {
    content: none;
}

.hero--mesh .hero__description {
    color: rgba(255, 255, 255, 0.92);
}

.hero--mesh::before {
    content: '';
    position: absolute;
    bottom: 64px;
    left: 0;
    width: 100%;
    height: 110px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 110' preserveAspectRatio='none'%3E%3Cpath d='M0,60 C300,90 600,30 1200,70' fill='none' stroke='%23ffffff' stroke-width='6' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: cover;
    opacity: 0.85;
}

.hero--mesh::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 110px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 110' preserveAspectRatio='none'%3E%3Cpath d='M0,40 C300,10 600,80 1200,20' fill='none' stroke='%23ffffff' stroke-width='6' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: cover;
    opacity: 0.85;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 80px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 80' preserveAspectRatio='none'%3E%3Cpath d='M0,40 Q300,10 600,40 T1200,40 L1200,80 L0,80 Z' fill='%23ffffff'/%3E%3C/svg%3E");
    background-size: cover;
    background-repeat: no-repeat;
    z-index: 1;
}

.hero__container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-2xl);
    align-items: center;
    position: relative;
    z-index: 2;
    padding: var(--spacing-xl) var(--spacing-md);
}

.hero__content {
    max-width: 600px;
}

.hero__title {
    font-family: var(--font-hero);
    font-size: 4rem;
    font-weight: 800;
    color: var(--color-white);
    margin-bottom: var(--spacing-lg);
    line-height: 1.2;
}

.hero__description {
    font-size: 1.125rem;
    color: var(--color-white);
    margin-bottom: var(--spacing-xl);
    line-height: 1.7;
}

.hero__description strong {
    font-weight: 700;
}

.hero__buttons {
    display: none;
}

/* Hero Visuals */
.hero__visuals {
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.hero__image-main {
    width: 100%;
    max-width: 600px;
    height: 700px;
    border-radius: var(--radius-xl);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.hero__video-card {
    position: relative;
    width: 100%;
    max-width: 700px;
    aspect-ratio: 16/9;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    background: #000;
    transform: translateY(-5%);
}

.hero__video-card iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
    z-index: 1;
}

.hero__video-card::before,
.hero__video-card::after {
    content: none;
}

/* Remove legacy single wave */
.hero::after {
    content: none;
}

/* Multi-layer bottom waves */
.hero__waves {
    display: none;
}

.video-fallback {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: var(--shadow-md);
}

.hero__mesh {
    display: none;
}

.floating-element {
    position: absolute;
    animation: float 6s ease-in-out infinite;
}

.floating-delay-1 {
    animation-delay: 0.5s;
}

.floating-delay-2 {
    animation-delay: 1s;
}

.floating-delay-3 {
    animation-delay: 1.5s;
}

.floating-delay-4 {
    animation-delay: 2s;
}

.hero__phone-main {
    right: 10%;
    top: 50%;
    transform: translateY(-50%);
    width: 280px;
    z-index: 5;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.2));
}

.hero__coffee {
    left: 5%;
    top: 10%;
    width: 180px;
    z-index: 3;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.15));
}

.hero__badge {
    left: 15%;
    top: 40%;
    width: 200px;
    z-index: 2;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.15));
}

.hero__card {
    left: 0;
    bottom: 15%;
    width: 220px;
    z-index: 4;
    filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.2));
}

.hero__stamp {
    right: 5%;
    bottom: 10%;
    width: 240px;
    z-index: 4;
    filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.2));
}

/* Wave Background */
.hero__wave {
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    z-index: 1;
    line-height: 0;
}

.hero__wave svg {
    width: 100%;
    height: auto;
}

/* Floating Animation */
@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

/* ===================================
   Section Headers
   =================================== */
.section__header {
    margin-bottom: var(--spacing-xl);
}

.section__subtitle-small {
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-gray);
    margin-bottom: var(--spacing-xs);
}

.section__title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: var(--spacing-md);
}

.section__subtitle {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--color-gray-dark);
    margin-bottom: var(--spacing-md);
}

.section__description {
    font-size: 1.125rem;
    color: var(--color-gray);
    max-width: 700px;
    margin: 0 auto;
}

/* ===================================
   Video Section
   =================================== */
.video-section {
    background: var(--color-gray-lighter);
}

.video-wrapper {
    margin: var(--spacing-2xl) 0;
    border-radius: var(--radius-xl);
    overflow: hidden;
}

.video-placeholder {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    /* 16:9 aspect ratio */
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    cursor: pointer;
    transition: var(--transition-base);
}

.video-play-button:hover {
    transform: translate(-50%, -50%) scale(1.1);
}

.video-play-button svg {
    color: var(--color-white);
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.3));
}

/* ===================================
   Features Grid (Why Us Page)
   =================================== */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-lg);
    margin-top: var(--spacing-2xl);
}

.feature-card {
    background: var(--color-white);
    padding: var(--spacing-xl);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-base);
    text-align: center;
    border: 1px solid var(--color-gray-light);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--color-primary-light);
}

.feature-card__icon {
    font-size: 3rem;
    margin-bottom: var(--spacing-md);
    display: inline-block;
    background: var(--color-gray-lighter);
    width: 80px;
    height: 80px;
    line-height: 80px;
    border-radius: 50%;
    color: var(--color-primary);
}

.feature-card__title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
    color: var(--color-black);
}

.feature-card__text {
    color: var(--color-gray);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* ===================================
   Testimonials Grid (Why Us Page)
   =================================== */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-lg);
    margin-top: var(--spacing-2xl);
}

.testimonial-card {
    background: var(--color-white);
    padding: var(--spacing-xl);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-base);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.testimonial-card__stars {
    font-size: 1.2rem;
    margin-bottom: var(--spacing-md);
    color: #FFD700;
    /* Gold color */
}

.testimonial-card__text {
    font-style: italic;
    color: var(--color-gray-dark);
    margin-bottom: var(--spacing-lg);
    flex-grow: 1;
    line-height: 1.7;
}

.testimonial-card__author {
    border-top: 1px solid var(--color-gray-light);
    padding-top: var(--spacing-md);
}

.testimonial-card__name {
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-black);
    margin-bottom: 0.2rem;
}

.testimonial-card__info {
    font-size: 0.85rem;
    color: var(--color-gray);
}

/* ===================================
   Page Hero (Why Us Page)
   =================================== */
.page-hero {
    background-color: var(--color-secondary);
    padding: var(--spacing-3xl) 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle at 20% 20%, rgba(231, 99, 58, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(231, 99, 58, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.page-hero__title {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--color-black);
    margin-bottom: var(--spacing-md);
    position: relative;
    z-index: 1;
}

.page-hero__description {
    font-size: 1.25rem;
    color: var(--color-gray-dark);
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* ===================================
   Benefits Section
   =================================== */
.benefit {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-2xl);
    align-items: center;
    margin-bottom: var(--spacing-2xl);
}

.benefit--reverse {
    direction: rtl;
}

.benefit--reverse>* {
    direction: ltr;
}

.benefit__title {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: var(--spacing-sm);
}

.benefit__subtitle {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: var(--spacing-md);
    color: var(--color-gray-dark);
}

.benefit__text {
    font-size: 1.0625rem;
    color: var(--color-gray);
    margin-bottom: var(--spacing-md);
    line-height: 1.8;
}

.benefit__link {
    display: inline-block;
    color: var(--color-primary);
    font-weight: 600;
    font-size: 1.0625rem;
    transition: var(--transition-fast);
}

.benefit__link:hover {
    color: var(--color-primary-dark);
    transform: translateX(4px);
}

.benefit__visual {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--spacing-xl);
    flex-wrap: wrap;
}

.benefit__image-wrapper {
    max-width: 440px;
    animation: float 8s ease-in-out infinite;
}

/* ===================================
   Use Cases Section
   =================================== */
.use-cases {
    background: linear-gradient(135deg, var(--color-secondary) 0%, #fef8ef 100%);
}

.use-case-card {
    background: var(--color-white);
    padding: var(--spacing-2xl);
    border-radius: var(--radius-xl);
    max-width: 900px;
    margin: 0 auto;
    box-shadow: var(--shadow-md);
}

.use-case-card__title {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: var(--spacing-sm);
}

.use-case-card__subtitle {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: var(--spacing-md);
    color: var(--color-gray-dark);
}

.use-case-card__text {
    font-size: 1.0625rem;
    color: var(--color-gray);
    margin-bottom: var(--spacing-md);
    line-height: 1.8;
}

/* ===================================
   App Users Section
   =================================== */
.app-users {
    background:
        radial-gradient(1200px 600px at 15% 30%, rgba(255, 255, 255, 0.15) 0%, transparent 60%),
        radial-gradient(900px 500px at 85% 40%, rgba(255, 255, 255, 0.10) 0%, transparent 60%),
        linear-gradient(135deg, #e56b4c 0%, #c04b2f 100%);
    color: var(--color-white);
}

.app-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-xl);
}

.app-feature {
    background: var(--color-white);
    padding: var(--spacing-xl);
    border-radius: var(--radius-lg);
    text-align: center;
    transition: var(--transition-base);
    box-shadow: var(--shadow-sm);
}

.app-feature:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.app-feature__icon {
    font-size: 3rem;
    margin-bottom: var(--spacing-md);
}

.app-feature__title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
    color: var(--color-primary);
}

.app-feature__text {
    color: var(--color-gray);
    line-height: 1.6;
}

/* Feature Tiles (Homepage) */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-xl);
}

.stat-card {
    background: var(--color-white);
    border: 1px solid var(--color-gray-light);
    border-radius: var(--radius-xl);
    padding: var(--spacing-xl);
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.stat-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}

.stat-card__icon {
    font-size: 2rem;
    margin-bottom: var(--spacing-sm);
}

.stat-card__title {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--color-black);
    margin-bottom: var(--spacing-xs);
}

.stat-card__text {
    color: var(--color-gray);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ===================================
   CTA Section
   =================================== */
.cta {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    padding: var(--spacing-md) 0;
}

.cta__card {
    text-align: left;
    padding: var(--spacing-md);
    border-radius: var(--radius-xl);
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.18);
}

.cta__title {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--color-white);
    margin-bottom: var(--spacing-sm);
}

.cta__description {
    font-size: 0.95rem;
    color: var(--color-white);
    margin-bottom: var(--spacing-sm);
    opacity: 0.95;
}

.cta__buttons {
    display: flex;
    gap: var(--spacing-md);
    justify-content: center;
    flex-wrap: wrap;
}

/* CTA Split Layout */
.cta__grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: var(--spacing-sm);
    align-items: center;
}

.cta__badges {
    display: flex;
    gap: var(--spacing-md);
    align-items: center;
    margin-top: var(--spacing-md);
}

.store-badge {
    height: 32px;
    filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.15));
}

.store-badge:hover {
    transform: translateY(-2px);
    transition: var(--transition-fast);
}

.cta__visual img {
    max-width: 140px;
    height: auto;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    background: transparent;
}

.cta--minimal {
    background: var(--color-white);
    padding: var(--spacing-lg) 0;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.cta--minimal .cta__card {
    background: transparent;
    border: none;
    padding: var(--spacing-lg);
}

.cta--minimal .cta__title {
    color: var(--color-black);
    font-size: 1.75rem;
    margin-bottom: var(--spacing-sm);
}

.cta--minimal .cta__description {
    color: var(--color-gray-dark);
    opacity: 0.95;
}

.cta--minimal .cta__visual img {
    max-width: 160px;
    border-radius: var(--radius-lg);
    box-shadow: none;
}

.cta__visual {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding-right: var(--spacing-md);
}

/* CTA image with white circular backdrop */
.cta__image-wrapper {
    position: relative;
    width: 180px;
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cta__image-wrapper::before {
    content: '';
    position: absolute;
    width: 180px;
    height: 180px;
    border-radius: var(--radius-xl);
    background: linear-gradient(135deg, rgba(249, 249, 249, 0.95), rgba(229, 229, 229, 0.9));
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: var(--shadow-md);
}

.cta__image-wrapper img {
    position: relative;
    z-index: 1;
    max-width: 92%;
    border-radius: var(--radius-md);
}

@media (max-width: 768px) {
    .cta__image-wrapper {
        width: 150px;
        height: 150px;
    }

    .cta__image-wrapper::before {
        width: 150px;
        height: 150px;
    }
}

@media (max-width: 768px) {
    .cta__grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .cta__card {
        text-align: center;
    }

    .cta__visual img {
        margin: 0 auto;
    }
}

/* ===================================
   Footer
   =================================== */
.footer {
    background: var(--color-secondary);
    color: var(--color-black);
    padding: var(--spacing-2xl) 0 var(--spacing-lg);
    position: relative;
    margin-top: 0;
}

.footer::before {
    content: none;
}

.footer__grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: var(--spacing-2xl);
    margin-bottom: var(--spacing-2xl);
}

.footer__logo {
    height: 50px;
    width: auto;
    margin-bottom: var(--spacing-md);
}

.footer__description {
    color: var(--color-gray-dark);
    line-height: 1.7;
    font-weight: 500;
}

.footer__title {
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: var(--spacing-md);
    color: var(--color-black);
}

.footer__list {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.footer__list a {
    color: var(--color-gray-dark);
    transition: var(--transition-fast);
    font-weight: 500;
}

.footer__list a:hover {
    color: var(--color-primary);
    transform: translateX(5px);
    display: inline-block;
}

.footer__bottom {
    padding-top: var(--spacing-lg);
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    text-align: center;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer__copyright {
    color: var(--color-gray);
    font-size: 0.9rem;
}

.footer__socials {
    display: flex;
    gap: var(--spacing-sm);
}

.footer__social-link {
    color: var(--color-primary);
    font-size: 1.2rem;
    transition: var(--transition-fast);
}

.footer__social-link:hover {
    color: var(--color-primary-dark);
    transform: translateY(-2px);
}

/* ===================================
   Responsive Design - Tablet
   =================================== */
@media (max-width: 1024px) {
    .hero__container {
        gap: var(--spacing-lg);
    }

    .hero__title {
        font-size: 2.75rem;
    }

    .hero__visuals {
        height: 500px;
    }

    .hero__phone-main {
        width: 240px;
    }

    .hero__coffee {
        width: 150px;
    }

    .hero__badge {
        width: 170px;
    }

    .hero__card {
        width: 190px;
    }

    .hero__stamp {
        width: 200px;
    }

    .benefit {
        gap: var(--spacing-2xl);
    }

    .section__title {
        font-size: 2rem;
    }
}

/* ===================================
   Responsive Design - Mobile
   =================================== */
@media (max-width: 768px) {
    :root {
        --header-height: 70px;
    }

    /* Navigation */
    .nav__menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: var(--color-white);
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: var(--spacing-3xl) var(--spacing-lg);
        box-shadow: none;
        transition: right var(--transition-base);
        z-index: 1000;
    }

    .nav__menu.show-menu {
        right: 0;
    }

    .nav__list {
        flex-direction: column;
        align-items: center;
        gap: var(--spacing-lg);
        width: 100%;
        text-align: center;
    }

    .nav__link {
        font-size: 1.5rem;
        font-weight: 600;
    }

    .nav__close {
        display: block;
        position: absolute;
        top: var(--spacing-md);
        right: var(--spacing-md);
        cursor: pointer;
        font-size: 2rem;
        color: var(--color-black);
        padding: var(--spacing-xs);
    }

    .nav__toggle {
        display: block;
        z-index: 1002;
    }

    .nav__toggle svg {
        color: var(--color-primary);
    }

    .nav__actions .btn {
        display: none;
    }

    /* Hero */
    .hero__container {
        grid-template-columns: 1fr;
        text-align: center;
        padding: var(--spacing-2xl) var(--spacing-md);
    }

    .hero__content {
        max-width: 100%;
    }

    .hero__title {
        font-size: 2.25rem;
    }

    .hero__description {
        font-size: 1rem;
    }

    .hero__buttons {
        justify-content: center;
    }

    .hero__visuals {
        height: 400px;
        margin-top: var(--spacing-xl);
    }

    .hero__phone-main {
        width: 200px;
        right: 50%;
        transform: translate(50%, -50%);
    }

    .hero__coffee {
        width: 120px;
        left: 5%;
        top: 5%;
    }

    .hero__badge {
        width: 130px;
        left: 10%;
        top: 35%;
    }

    .hero__card {
        width: 150px;
        left: 5%;
        bottom: 20%;
    }

    .hero__stamp {
        width: 160px;
        right: 10%;
        bottom: 15%;
    }

    /* Sections */
    .section {
        padding: var(--spacing-2xl) 0;
    }

    .section__title {
        font-size: 1.75rem;
    }

    .section__subtitle {
        font-size: 1.25rem;
    }

    .section__description {
        font-size: 1rem;
    }

    /* Benefits */
    .benefit {
        grid-template-columns: 1fr;
        gap: var(--spacing-xl);
    }

    .benefit--reverse {
        direction: ltr;
    }

    .benefit__title {
        font-size: 1.5rem;
    }

    .benefit__subtitle {
        font-size: 1.25rem;
    }

    .benefit__text {
        font-size: 1rem;
    }

    /* Stats Grid */
    .stats-grid {
        grid-template-columns: 1fr;
    }

    /* App Features */
    .app-features-grid {
        grid-template-columns: 1fr;
    }

    /* CTA */
    .cta__title {
        font-size: 1.75rem;
    }

    .cta__description {
        font-size: 1rem;
    }

    .cta__buttons {
        flex-direction: column;
        align-items: stretch;
    }

    /* Footer */
    .footer__grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-xl);
    }
}

@media (max-width: 480px) {
    .hero__title {
        font-size: 1.875rem;
    }

    .btn {
        width: 100%;
    }

    .hero__visuals {
        height: 350px;
    }
}

/* ===================================
   Wavy Section Backgrounds
   =================================== */
.section--wave-bg {
    position: relative;
    background: var(--color-primary);
    color: var(--color-white);
}

.section--wave-top::before {
    content: '';
    position: absolute;
    top: -2px;
    left: 0;
    width: 100%;
    height: 80px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 80' preserveAspectRatio='none'%3E%3Cpath d='M0,40 Q300,70 600,40 T1200,40 L1200,0 L0,0 Z' fill='%23ffffff'/%3E%3C/svg%3E");
    background-size: cover;
    background-repeat: no-repeat;
}

.section--wave-bottom::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 80px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 80' preserveAspectRatio='none'%3E%3Cpath d='M0,40 Q300,10 600,40 T1200,40 L1200,80 L0,80 Z' fill='%23ffffff'/%3E%3C/svg%3E");
    background-size: cover;
    background-repeat: no-repeat;
}

/* ===================================
   Video Embed
   =================================== */
.video-embed {
    position: relative;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.video-embed__wrapper {
    position: relative;
    padding-bottom: 56.25%;
    /* 16:9 aspect ratio */
    height: 0;
    background: var(--color-black);
}

.video-embed__media {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border: none;
}

.video-embed__placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

/* ===================================
   Numbered Steps (How It Works)
   =================================== */
.steps-numbered {
    max-width: 1200px;
    margin: 0 auto;
}

.step-numbered {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-3xl);
    align-items: center;
    margin-bottom: var(--spacing-3xl);
}

.step-numbered:nth-child(even) {
    direction: rtl;
}

.step-numbered:nth-child(even)>* {
    direction: ltr;
}

.step-numbered__content {
    position: relative;
}

.step-numbered__badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: var(--color-primary);
    color: var(--color-white);
    border-radius: 50%;
    font-size: 1.75rem;
    font-weight: 800;
    margin-bottom: var(--spacing-md);
}

.step-numbered__title {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
    color: var(--color-black);
}

.step-numbered__description {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--color-gray);
}

.step-numbered__image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.step-numbered__image img {
    width: 100%;
    height: auto;
    display: block;
}

/* ===================================
   Button Variants
   =================================== */
.btn--white {
    background: var(--color-white);
    color: var(--color-primary);
    border: 2px solid var(--color-white);
}

.btn--white:hover {
    background: transparent;
    color: var(--color-white);
    border-color: var(--color-white);
}

/* ===================================
   For App Users Section (Coral Background)
   =================================== */
.for-app-users {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    color: var(--color-white);
    position: relative;
    padding: var(--spacing-3xl) 0;
}

.for-app-users .benefit__title,
.for-app-users .benefit__subtitle,
.for-app-users .benefit__text {
    color: var(--color-white);
}

/* White variant for App Users section */
.for-app-users--white {
    background: var(--color-white);
    color: var(--color-black);
}

.for-app-users--white .benefit__title {
    color: var(--color-primary);
}

.for-app-users--white .benefit__subtitle {
    color: var(--color-black);
}

.for-app-users--white .benefit__text {
    color: var(--color-gray);
}

/* App highlights under visual */
.app-highlights {
    display: grid;
    grid-template-columns: repeat(3, minmax(160px, 1fr));
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
}

.app-highlight {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    border: 1px solid var(--color-gray-light);
    border-radius: var(--radius-lg);
    background: var(--color-gray-lighter);
}

.app-highlight__icon {
    font-size: 1.25rem;
}

.app-highlight__text {
    color: var(--color-gray-dark);
    font-weight: 600;
}

@media (max-width: 768px) {
    .app-highlights {
        grid-template-columns: 1fr;
    }
}

/* ===================================
   Image Placeholders
   =================================== */
.image-placeholder {
    background: linear-gradient(135deg, var(--color-gray-lighter) 0%, var(--color-gray-light) 100%);
    border: 2px dashed var(--color-gray);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: var(--spacing-xl);
    min-height: 200px;
}

.image-placeholder__icon {
    font-size: 3rem;
    color: var(--color-gray);
    margin-bottom: var(--spacing-sm);
}

.image-placeholder__text {
    color: var(--color-gray);
    font-weight: 600;
    text-align: center;
    font-size: 1rem;
}

/* ===================================
   Page Hero (Clean Style for Other Pages)
   =================================== */
.page-hero {
    background: var(--color-white);
    padding: calc(var(--header-height) + var(--spacing-3xl)) 0 var(--spacing-2xl);
    text-align: center;
}

.page-hero__title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: var(--spacing-md);
    color: var(--color-black);
}

.page-hero__description {
    font-size: 1.25rem;
    max-width: 700px;
    margin: 0 auto;
    color: var(--color-gray);
}

/* ===================================
   Contact Page Styles
   =================================== */
.contact-hero {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    padding: calc(var(--header-height) + var(--spacing-3xl)) 0 var(--spacing-3xl);
    text-align: center;
    color: var(--color-white);
}

.contact-hero__title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: var(--spacing-md);
    color: var(--color-white);
}

.contact-hero__description {
    font-size: 1.25rem;
    max-width: 700px;
    margin: 0 auto;
    opacity: 0.95;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-3xl);
    margin-bottom: var(--spacing-3xl);
}

@media (max-width: 768px) {
    .contact-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-xl);
    }
}

.contact-form {
    background: var(--color-white);
    padding: var(--spacing-2xl);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

.form-group {
    margin-bottom: var(--spacing-lg);
}

.form-label {
    display: block;
    font-weight: 600;
    margin-bottom: var(--spacing-xs);
    color: var(--color-gray-dark);
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid var(--color-gray-light);
    border-radius: var(--radius-md);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition-fast);
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--color-primary);
}

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

.contact-info {
    background: var(--color-gray-lighter);
    padding: var(--spacing-2xl);
    border-radius: var(--radius-xl);
}

.contact-info__item {
    margin-bottom: var(--spacing-xl);
}

.contact-info__title {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: var(--spacing-xs);
    color: var(--color-primary);
}

.contact-info__text {
    color: var(--color-gray);
    line-height: 1.7;
}

/* ===================================
   How It Works Page Styles
   =================================== */
.steps-section {
    background: var(--color-white);
}

.step {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-3xl);
    align-items: center;
    margin-bottom: var(--spacing-3xl);
    padding: var(--spacing-2xl) 0;
}

.step:nth-child(even) {
    direction: rtl;
}

.step:nth-child(even)>* {
    direction: ltr;
}

.step__number {
    display: inline-block;
    width: 60px;
    height: 60px;
    background: var(--color-primary);
    color: var(--color-white);
    border-radius: 50%;
    font-size: 1.75rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--spacing-md);
}

.step__title {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: var(--spacing-md);
}

.step__description {
    font-size: 1.0625rem;
    color: var(--color-gray);
    line-height: 1.8;
    margin-bottom: var(--spacing-md);
}

.step__image {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: none;
    background: transparent;
}

/* ===================================
   About Page Styles
   =================================== */

/* Modern About Hero Section */
.about-hero-modern {
    background: var(--color-white);
    padding: calc(var(--header-height) + var(--spacing-3xl)) 0 var(--spacing-3xl);
}

.about-hero-modern__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-3xl);
    align-items: center;
}

.about-hero-modern__content {
    max-width: 600px;
}

.about-hero-modern__title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: var(--spacing-lg);
    color: var(--color-black);
    line-height: 1.1;
}

.about-hero-modern__description {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--color-gray);
    margin-bottom: var(--spacing-md);
    font-weight: 400;
}

.about-hero-modern__visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-hero-modern__image-placeholder {
    width: 100%;
    max-width: 500px;
    aspect-ratio: 1;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

/* Legacy About Hero (keeping for compatibility) */
.about-hero {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    padding: calc(var(--header-height) + var(--spacing-3xl)) 0 var(--spacing-3xl);
    text-align: center;
    color: var(--color-white);
}

.about-hero__title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: var(--spacing-md);
    color: var(--color-white);
}

.about-hero__description {
    font-size: 1.25rem;
    max-width: 800px;
    margin: 0 auto;
    opacity: 0.95;
}

/* Story Section */
.story-section {
    background: var(--color-white);
    padding: var(--spacing-3xl) 0;
}

.story-content {
    max-width: 900px;
    margin: 0 auto;
}

.story-content p {
    font-size: 1.125rem;
    line-height: 1.9;
    color: var(--color-gray);
    margin-bottom: var(--spacing-lg);
    font-weight: 400;
}

/* Mission Grid */
.mission-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-xl);
    margin-top: var(--spacing-2xl);
}

.mission-card {
    background: var(--color-gray-lighter);
    border: 1px solid var(--color-gray-light);
    border-radius: var(--radius-xl);
    padding: var(--spacing-xl);
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.mission-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}

.mission-card__title {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--color-black);
    margin-bottom: var(--spacing-sm);
}

.mission-card__text {
    color: var(--color-gray);
    line-height: 1.7;
}

/* Values Grid */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-xl);
    margin-top: var(--spacing-xl);
}

.value-card {
    background: var(--color-white);
    padding: var(--spacing-2xl);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
    text-align: center;
    border: 1px solid transparent;
}

.value-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--color-primary);
}

.value-card__icon {
    font-size: 3.5rem;
    margin-bottom: var(--spacing-md);
    display: block;
}

.value-card__title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: var(--spacing-md);
    color: var(--color-black);
}

.value-card__text {
    color: var(--color-gray);
    line-height: 1.7;
    font-size: 1rem;
    font-weight: 400;
}

/* Team Grid */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: var(--spacing-xl);
    margin-top: var(--spacing-xl);
}

.team-card {
    background: var(--color-white);
    border: 1px solid var(--color-gray-light);
    border-radius: var(--radius-xl);
    padding: var(--spacing-lg);
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.team-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}

.team-card__avatar {
    max-width: 200px;
    margin: 0 auto var(--spacing-md);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.team-card__name {
    font-weight: 800;
    color: var(--color-black);
    margin-bottom: 4px;
}

.team-card__role {
    color: var(--color-gray);
    font-size: 0.95rem;
}

/* Counters */
.stat-card__title .counter {
    color: var(--color-primary);
}

/* ===================================
   Business Application Page Styles
   =================================== */
.application-form-section {
    background: var(--color-gray-lighter);
}

.application-form {
    max-width: 800px;
    margin: 0 auto;
    background: var(--color-white);
    padding: var(--spacing-2xl);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-lg);
}

.form-checkbox-group {
    margin-bottom: var(--spacing-lg);
}

.form-checkbox {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    margin-bottom: var(--spacing-sm);
}

.form-checkbox input[type="checkbox"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
}

.pricing-table {
    background: var(--color-white);
    border-radius: var(--radius-xl);
    padding: var(--spacing-2xl);
    box-shadow: var(--shadow-md);
}

.pricing-table__header {
    text-align: center;
    margin-bottom: var(--spacing-xl);
}

.pricing-table__title {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: var(--spacing-sm);
}

.pricing-table__price {
    font-size: 3rem;
    font-weight: 800;
    color: var(--color-primary);
    margin-bottom: var(--spacing-xs);
}

.pricing-table__period {
    color: var(--color-gray);
    font-size: 1.125rem;
}

.pricing-features {
    list-style: none;
    margin-bottom: var(--spacing-xl);
}

.pricing-features li {
    padding: var(--spacing-sm) 0;
    border-bottom: 1px solid var(--color-gray-light);
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features li::before {
    content: "✓";
    color: var(--color-primary);
    font-weight: 700;
    font-size: 1.25rem;
}

/* ===================================
   Testimonials Carousel (Redesigned)
   =================================== */
.testimonials-carousel {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-xl);
    overflow: hidden;
}

.testimonials-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
    width: 100%;
}

.testimonial-slide {
    min-width: 100%;
    /* Show one slide at a time by default, or adjust for multiple */
    padding: var(--spacing-md);
    box-sizing: border-box;
    flex: 0 0 100%;
    /* Ensure flex items don't shrink */
}

@media (min-width: 768px) {
    .testimonial-slide {
        min-width: 33.333%;
        /* Show 3 slides on desktop */
        flex: 0 0 33.333%;
    }
}

.testimonial-card {
    background: var(--color-white);
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
    min-height: auto;
    display: flex;
    flex-direction: column;
    text-align: left;
    border: 1px solid #eee;
    position: relative;
}

.testimonial-card__quote-icon {
    position: absolute;
    top: -25px;
    left: 30px;
    width: 50px;
    height: 50px;
    background: #ff8e75;
    /* Coral/Pinkish from screenshot */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-card__quote-icon::before {
    content: '“';
    font-size: 3rem;
    color: white;
    font-family: serif;
    line-height: 1;
    margin-top: 10px;
}

.testimonial-card__stars {
    color: #ff8e75;
    margin-top: var(--spacing-lg);
    margin-bottom: var(--spacing-sm);
    font-size: 1.2rem;
}

.testimonial-card__title {
    font-size: 1rem;
    font-weight: 800;
    color: #000000;
    margin-bottom: var(--spacing-sm);
    line-height: 1.35;
}

.testimonial-card__text {
    font-size: 0.94rem;
    color: var(--color-text);
    font-weight: 300;
    margin-bottom: var(--spacing-md);
    line-height: 1.6;
}

.testimonial-card__author {
    display: flex;
    align-items: center;
    margin-top: auto;
    border-top: 1px solid #eee;
    padding-top: var(--spacing-md);
}

.testimonial-card__avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: var(--spacing-md);
    border: 2px solid #eee;
}

.testimonial-card__avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-card__info {
    display: flex;
    flex-direction: column;
}

.testimonial-card__name {
    font-weight: 800;
    color: #000000;
    margin: 0;
    font-size: 1rem;
}

.testimonial-card__company {
    font-size: 0.85rem;
    color: var(--color-gray);
    margin: 0;
    font-weight: 300;
}

.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: var(--color-white);
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--color-primary);
    z-index: 10;
    transition: all 0.3s ease;
}

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

.carousel-nav--prev {
    left: 0;
}

.carousel-nav--next {
    right: 0;
}

/* Carousel Dots */
.carousel-dots {
    display: none;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--color-gray-light);
    cursor: pointer;
    transition: all var(--transition-fast);
}

.carousel-dot.active {
    background: var(--color-primary);
    width: 32px;
    border-radius: 6px;
}

@media (max-width: 768px) {
    .container {
        padding: 0 var(--spacing-sm);
        max-width: 100%;
    }

    .nav {
        height: 64px;
    }

    .nav__toggle {
        display: flex !important;
        align-items: center;
        justify-content: center;
        z-index: 1002;
        width: 40px;
        height: 40px;
    }

    .nav__toggle svg {
        color: var(--color-primary);
        width: 24px;
        height: 24px;
    }

    .nav__actions {
        gap: var(--spacing-sm);
    }

    .nav__menu {
        position: fixed;
        top: 0;
        right: 0;
        width: 100%;
        max-width: 100vw;
        height: 100vh;
        background: var(--color-white);
        display: flex;
        justify-content: center;
        align-items: center;
        transform: translateX(100%);
        transition: transform var(--transition-base);
        z-index: 1001;
        overflow-y: auto;
    }

    .nav__menu.show-menu {
        transform: translateX(0);
    }

    .nav__list {
        flex-direction: column;
        gap: var(--spacing-lg);
    }

    .nav__link {
        font-size: 1.125rem;
    }

    .nav__link.btn--text {
        background-color: var(--color-primary);
        color: var(--color-white);
        padding: 10px 20px;
        border-radius: var(--radius-full);
        margin-top: var(--spacing-md);
    }

    .nav__close {
        display: block;
        position: absolute;
        top: 16px;
        right: 16px;
        z-index: 1003;
    }

    .nav__actions .btn--text {
        display: none;
    }

    .hero--saasy .hero__container {
        grid-template-columns: 1fr;
    }

    .hero--saasy .hero__visuals {
        order: 2;
    }

    .hero__stores {
        display: flex;
        gap: var(--spacing-sm);
        justify-content: center;
        margin-top: var(--spacing-md);
    }

    .hero__stores .store-icon img {
        width: 36px;
        height: 36px;
    }

    .hero {
        min-height: auto;
        padding-top: calc(var(--header-height));
    }

    .hero__container {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
        padding: var(--spacing-lg) var(--spacing-sm);
    }

    .hero__content {
        max-width: 100%;
        text-align: center;
    }

    .hero__title {
        font-size: 2.25rem;
    }

    .hero__description {
        font-size: 1rem;
        margin-left: auto;
        margin-right: auto;
    }

    .hero__visuals {
        height: auto;
        justify-content: center;
    }

    .hero__video-card {
        max-width: 100%;
        transform: none;
    }

    .video-fallback {
        width: 56px;
        height: 56px;
    }

    .section {
        padding: var(--spacing-md) 0;
    }

    .section__title {
        font-size: 1.75rem;
    }

    .section__description {
        font-size: 1rem;
    }

    .benefit {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }

    .benefit--reverse {
        direction: ltr;
    }

    .benefit__title {
        font-size: 1.5rem;
    }

    .benefit__subtitle {
        font-size: 1.25rem;
    }

    .benefit__image-wrapper {
        max-width: 100%;
    }

    .brand-marquee__track {
        gap: var(--spacing-md);
    }

    .testimonials-carousel {
        padding: 0 var(--spacing-md);
    }

    .carousel-nav {
        display: none;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

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

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

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

    .footer__grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }
}

@media (max-width: 480px) {
    .nav {
        height: 56px;
    }

    .hero__title {
        font-size: 2rem;
    }

    .hero__description {
        font-size: 0.95rem;
    }

    .btn {
        padding: 12px 20px;
        font-size: 0.95rem;
    }

    .btn--large {
        padding: 14px 24px;
        font-size: 1rem;
    }

    .section__title {
        font-size: 1.5rem;
    }
}

/* ===================================
   Gradient Utilities
   =================================== */
.gradient-primary {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
}

.gradient-secondary {
    background: linear-gradient(135deg, #ff9a76 0%, var(--color-primary) 100%);
}

/* ===================================
   Wave Background Sections
   =================================== */
.section--wave-bg {
    position: relative;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
}

.section--wave-top::before {
    content: '';
    position: absolute;
    top: -2px;
    left: 0;
    width: 100%;
    height: 80px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 80' preserveAspectRatio='none'%3E%3Cpath d='M0,40 Q300,10 600,40 T1200,40 L1200,0 L0,0 Z' fill='%23ffffff'/%3E%3C/svg%3E");
    background-size: cover;
    background-repeat: no-repeat;
}

.section--wave-bottom::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 80px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 80' preserveAspectRatio='none'%3E%3Cpath d='M0,40 Q300,10 600,40 T1200,40 L1200,80 L0,80 Z' fill='%23ffffff'/%3E%3C/svg%3E");
    background-size: cover;
    background-repeat: no-repeat;
}

/* ===================================
   How It Works - Horizontal Steps
   =================================== */
.hiw-hero {
    text-align: center;
    padding: var(--spacing-2xl) 0;
    max-width: 800px;
    margin: 0 auto;
}

.hiw-hero__subtitle {
    color: var(--color-primary);
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: var(--spacing-sm);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hiw-hero__title {
    font-size: 3rem;
    font-weight: 800;
    color: var(--color-black);
    margin-bottom: var(--spacing-md);
}

/* ===================================
   Modern Page Hero (Applied to multiple pages)
   =================================== */
/* How It Works - Horizontal Steps */
.hiw-hero {
    text-align: center;
    margin-bottom: var(--spacing-2xl);
}

.hiw-hero__subtitle {
    color: var(--color-primary);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: var(--spacing-sm);
}

.hiw-hero__title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--color-heading);
    max-width: 800px;
    margin: 0 auto;
}

.hiw-hero__title span {
    color: var(--color-primary);
    position: relative;
}

.steps-horizontal {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: var(--spacing-md);
    margin-top: var(--spacing-xl);
}

.step-card {
    background: var(--color-gray-lighter);
    border-radius: var(--radius-lg);
    padding: var(--spacing-lg);
    text-align: center;
    position: relative;
    transition: transform var(--transition-base);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.step-card:hover {
    transform: translateY(-5px);
}

.step-card__badge {
    width: 40px;
    height: 40px;
    background: #00c4b4;
    color: white;
    font-weight: 800;
    font-size: 1.25rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: var(--shadow-sm);
}

.step-card__image {
    background: transparent;
    border-radius: var(--radius-md);
    height: 140px;
    margin-bottom: var(--spacing-md);
    margin-top: var(--spacing-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: none;
    overflow: hidden;
}

.step-card__image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.step-card__title {
    color: var(--color-primary);
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: var(--spacing-sm);
}

.step-card__text {
    font-size: 0.9rem;
    color: var(--color-gray);
    line-height: 1.5;
}

/* Responsive adjustments */
@media (max-width: 1200px) {
    .steps-horizontal {
        grid-template-columns: repeat(3, 1fr);
        gap: var(--spacing-lg);
    }
}

@media (max-width: 768px) {
    .steps-horizontal {
        grid-template-columns: 1fr;
        gap: var(--spacing-xl);
    }

    .step-card {
        margin-top: var(--spacing-md);
    }

    .hiw-hero__title {
        font-size: 2rem;
    }
}

/* ===================================
   How It Works - Modern Steps
   =================================== */
.steps-grid-modern {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: var(--spacing-lg);
    margin-top: var(--spacing-xl);
}

.step-card-modern {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.step-card-modern__image-container {
    position: relative;
    width: 100%;
    margin-bottom: var(--spacing-md);
}

.step-card-modern__badge {
    position: absolute;
    top: -15px;
    left: -10px;
    width: 45px;
    height: 45px;
    background: #00c4b4;
    /* Teal */
    color: white;
    font-weight: 800;
    font-size: 1.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    z-index: 2;
    border: 3px solid white;
}

.step-card-modern__image {
    background: #f0f0f0;
    border-radius: var(--radius-lg);
    overflow: hidden;
    width: 100%;
    aspect-ratio: 4/5;
    /* Slightly tall rectangle like screenshot */
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
    transition: transform var(--transition-base);
}

.step-card-modern:hover .step-card-modern__image {
    transform: translateY(-5px);
}

.step-card-modern__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.step-card-modern__title {
    font-size: 1.25rem;
    font-weight: 800;
    /* Black bold */
    color: #000000;
    margin-bottom: var(--spacing-xs);
    font-family: var(--font-heading);
}

.step-card-modern__text {
    font-size: 0.9rem;
    color: var(--color-text);
    font-weight: 300;
    line-height: 1.4;
}

/* Responsive */
@media (max-width: 1200px) {
    .steps-grid-modern {
        grid-template-columns: repeat(3, 1fr);
    }
}

.section--compact .steps-grid-modern {
    margin-top: var(--spacing-sm);
}

@media (max-width: 768px) {
    .steps-grid-modern {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }

    .page-hero-modern__title {
        font-size: 2rem;
    }
}

/* ===================================
   Business Page - Split Layout
   =================================== */
.split-layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    /* Give more space to content */
    gap: var(--spacing-2xl);
    align-items: start;
    /* Align to top */
    margin-top: var(--spacing-xl);
}

.split-layout--single {
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
    margin-top: var(--spacing-md);
}

.split-features .split-layout {
    margin-top: var(--spacing-sm);
}

.split-layout__image {
    position: sticky;
    top: 100px;
    /* Sticky effect for image */
}

.split-layout__image img {
    width: 100%;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    background: #f5f5f5;
    /* Placeholder bg */
}

.features-grid-2x2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl) var(--spacing-lg);
}

.feature-item {
    margin-bottom: var(--spacing-lg);
}

.feature-item__icon {
    font-size: 3rem;
    color: var(--color-primary);
    /* Coral */
    margin-bottom: var(--spacing-sm);
    display: inline-block;
}

/* Specific icon colors from screenshot */
.feature-item:nth-child(1) .feature-item__icon {
    color: #ff8e75;
}

/* Coral */
.feature-item:nth-child(2) .feature-item__icon {
    color: #00c4b4;
}

/* Teal */
.feature-item:nth-child(3) .feature-item__icon {
    color: #ff8e75;
}

/* Coral */
.feature-item:nth-child(4) .feature-item__icon {
    color: #00c4b4;
}

/* Teal */

.feature-item h3 {
    font-size: 1.3rem;
    font-weight: 800;
    color: #000000;
    margin-bottom: var(--spacing-sm);
}

.feature-item p {
    font-size: 0.95rem;
    color: var(--color-text);
    line-height: 1.6;
}

@media (max-width: 992px) {
    .split-layout {
        grid-template-columns: 1fr;
    }

    .split-layout__image {
        position: static;
        max-width: 600px;
        margin: 0 auto var(--spacing-xl);
    }
}

@media (max-width: 600px) {
    .features-grid-2x2 {
        grid-template-columns: 1fr;
    }
}

/* Responsive styles for About Hero Modern */
@media (max-width: 992px) {
    .about-hero-modern__grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-2xl);
    }

    .about-hero-modern__visual {
        order: -1;
    }

    .about-hero-modern__title {
        font-size: 2.5rem;
    }

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

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

@media (max-width: 768px) {
    .about-hero-modern__title {
        font-size: 2rem;
    }

    .about-hero-modern__description {
        font-size: 1rem;
    }

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

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

    .about-title-squid {
        font-size: 2.25rem;
    }
}

/* Contact Page Hero Styles */
.page-hero {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    padding: var(--spacing-3xl) 0;
    text-align: center;
    position: relative;
    color: var(--color-white);
    overflow: hidden;
    margin-bottom: -2px;
    /* To overlap wave correctly */
}

.page-hero::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 80px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 80' preserveAspectRatio='none'%3E%3Cpath d='M0,40 Q300,10 600,40 T1200,40 L1200,80 L0,80 Z' fill='%23ffffff'/%3E%3C/svg%3E");
    background-size: cover;
    background-repeat: no-repeat;
    z-index: 1;
}

.page-hero .container {
    position: relative;
    z-index: 2;
}

.page-hero__title {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--color-white);
    margin-bottom: var(--spacing-md);
}

.page-hero__description {
    font-size: 1.25rem;
    color: var(--color-white);
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 0;
}

/* Adjust section below hero */
.contact-content {
    padding-top: var(--spacing-3xl);
    /* Add padding to separate from wave */
}

.scroll-indicator {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 2px solid #f1e4d2;
    background: rgba(241, 228, 210, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #f1e4d2;
    opacity: 0.95;
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.15);
    animation: bounce 1.8s infinite;
    z-index: 3;
}

.scroll-indicator:hover {
    transform: translateX(-50%) translateY(-2px);
    opacity: 1;
}

@keyframes bounce {

    0%,
    100% {
        transform: translate(-50%, 0);
    }

    50% {
        transform: translate(-50%, -8px);
    }
}

.hero__stores {
    display: flex;
    gap: var(--spacing-sm);
    margin-top: var(--spacing-md);
}

.store-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(241, 228, 210, 0.25);
    border: 1px solid rgba(241, 228, 210, 0.5);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
}

.store-icon {
    transition: var(--transition-fast);
}

.store-icon:hover {
    transform: translateY(-2px) scale(1.05);
}

.store-icon svg {
    width: 24px;
    height: 24px;
    fill: #ffffff;
}

.store-icon img {
    width: 24px;
    height: 24px;
    display: block;
}

/* Hero socials (vertical) */
.hero__socials {
    position: absolute;
    right: -72px;
    top: 50%;
    transform: translateY(-55%);
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.hero__socials::before,
.hero__socials::after {
    content: '';
    display: block;
    width: 1px;
    height: 110px;
    background: rgba(241, 228, 210, 0.6);
    margin: 0 auto;
}

.hero__socials::before {
    margin-bottom: 12px;
}

.hero__socials::after {
    margin-top: 12px;
}

.hero__social {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(241, 228, 210, 0.25);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
}

.hero__social img {
    width: 18px;
    height: 18px;
}

/* Video cream backdrop */
.hero__video-backdrop {
    display: none;
}

/* Header pill button */
.btn--pill {
    background: var(--color-primary);
    color: #fff;
    padding: 10px 18px;
    border-radius: 999px;
    font-weight: 600;
    border: none;
}

.btn--pill:hover {
    background: var(--color-primary-dark);
}

/* ===================================
   UI Enhancements
   =================================== */
.eyebrow {
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.3px;
    text-transform: uppercase;
    color: var(--color-primary);
    margin-bottom: var(--spacing-xs);
}

.image-frame {
    border-radius: var(--radius-xl);
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
    overflow: hidden;
    background: #ffffff;
}

.image-frame img {
    display: block;
    width: 100%;
    height: auto;
}

.image-frame--lg {
    max-width: 520px;
}

/* Plain variant for PNGs without any background/frame */
.image-frame--plain {
    border: none;
    box-shadow: none;
    background: transparent;
    border-radius: 0;
}

.highlight-section {
    background: var(--color-gray-lighter);
}

.highlight-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-xl);
}

.highlight-card {
    background: var(--color-white);
    border-radius: var(--radius-xl);
    padding: var(--spacing-xl);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--color-gray-light);
    transition: transform var(--transition-base), box-shadow var(--transition-base);
    text-align: center;
}

.highlight-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.highlight-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(214, 105, 67, 0.12);
    border: 1px solid rgba(214, 105, 67, 0.35);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--spacing-md);
}

.highlight-icon img {
    width: 28px;
    height: 28px;
}

.highlight-title {
    font-weight: 800;
    font-size: 1.125rem;
    margin-bottom: var(--spacing-xs);
    color: var(--color-black);
}

.highlight-text {
    color: var(--color-gray);
}

@media (max-width: 992px) {
    .highlight-grid {
        grid-template-columns: 1fr;
    }
}

/* ===================================
   Dark Feature Cards (3-Up)
   =================================== */
.features-dark {
    background: linear-gradient(135deg, var(--color-secondary) 0%, #fff 100%);
    color: var(--color-black);
    position: relative;
}

.features-dark .section__title,
.features-dark .section__description {
    color: var(--color-black);
    opacity: 0.9;
}

.feature-dark-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-xl);
    align-items: stretch;
}

.feature-dark-card {
    background: var(--color-white);
    border: 1px solid rgba(214, 105, 67, 0.25);
    border-radius: var(--radius-xl);
    padding: var(--spacing-xl);
    box-shadow: var(--shadow-md);
    position: relative;
}

.feature-dark-card::before {
    content: none;
}

.feature-dark-badge {
    display: inline-block;
    padding: 6px 12px;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 700;
    background: #ff8e75;
    color: #fff;
}

.feature-dark-visual {
    background: #f9f9f9;
    border-radius: var(--radius-lg);
    aspect-ratio: 9/16;
    max-width: 240px;
    margin: var(--spacing-md) auto var(--spacing-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(0, 0, 0, 0.06);
    overflow: hidden;
}

.feature-dark-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.feature-dark-title {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--color-black);
    margin-bottom: var(--spacing-sm);
}

.feature-dark-text {
    color: var(--color-gray);
    line-height: 1.7;
    font-size: 0.95rem;
}

@media (max-width: 992px) {
    .feature-dark-grid {
        grid-template-columns: 1fr;
    }
}

/* ===================================
   Process Steps (3 Columns)
   =================================== */
.process-section-dark {
    background: #141414;
    color: var(--color-white);
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-xl);
}

.process-card {
    background: rgba(20, 20, 20, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-xl);
    padding: var(--spacing-xl);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
    position: relative;
}

.process-card::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: inherit;
    background: radial-gradient(500px 280px at 50% 20%, rgba(241, 228, 210, 0.12), transparent 60%);
    z-index: -1;
}

.process-title {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: var(--spacing-sm);
}

.process-title .highlight {
    color: #ffd36a;
}

.process-text {
    color: #d1d1d1;
    line-height: 1.7;
    font-size: 0.95rem;
}

@media (max-width: 992px) {
    .process-grid {
        grid-template-columns: 1fr;
    }
}

/* ===================================
   Brand Gradient Showcases
   =================================== */
.brand-gradient-section {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    color: var(--color-white);
    position: relative;
}

.brand-gradient-section .section__title,
.brand-gradient-section .section__description {
    color: var(--color-white);
    opacity: 0.95;
}

.brand-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-xl);
}

.brand-card {
    background: var(--color-white);
    border: 1px solid rgba(241, 228, 210, 0.6);
    border-radius: var(--radius-xl);
    padding: var(--spacing-xl);
    box-shadow: var(--shadow-lg);
    text-align: center;
}

.brand-card__tag {
    display: inline-block;
    padding: 6px 12px;
    border-radius: 999px;
    background: #ff8e75;
    color: #fff;
    font-weight: 700;
    font-size: 0.75rem;
    margin-bottom: var(--spacing-md);
}

.brand-card__title {
    font-weight: 800;
    color: var(--color-black);
    margin-bottom: var(--spacing-sm);
}

.brand-card__text {
    color: var(--color-gray);
    line-height: 1.7;
}

.brand-card__visual {
    background: #f9f9f9;
    border-radius: var(--radius-lg);
    aspect-ratio: 9/16;
    max-width: 240px;
    margin: var(--spacing-md) auto var(--spacing-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.brand-card__visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.brand-split {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: var(--spacing-2xl);
    align-items: center;
}

.brand-split__visual {
    background: rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.brand-split__visual img {
    display: block;
    width: 100%;
    height: auto;
}

@media (max-width: 992px) {
    .brand-cards-grid {
        grid-template-columns: 1fr;
    }

    .brand-split {
        grid-template-columns: 1fr;
    }
}

/* SQUID benzeri About Hero */
.about-hero-squid {
    background: var(--color-white);
    padding: calc(var(--header-height) + var(--spacing-3xl)) 0 var(--spacing-2xl);
}

/* Contact hero decorative shapes */
.about-hero-squid.about-hero-squid--decor {
    position: relative;
    overflow: hidden;
}

.about-hero-squid.about-hero-squid--decor::before {
    content: '';
    position: absolute;
    top: -40px;
    left: -60px;
    width: 380px;
    height: 300px;
    background: radial-gradient(300px 200px at 30% 40%, rgba(241, 228, 210, 0.35), transparent 60%);
    filter: blur(2px);
    z-index: 1;
}

.about-hero-squid.about-hero-squid--decor::after {
    content: '';
    position: absolute;
    bottom: -30px;
    right: -50px;
    width: 320px;
    height: 260px;
    background: radial-gradient(260px 180px at 70% 60%, rgba(231, 99, 58, 0.18), transparent 60%);
    filter: blur(1px);
    z-index: 1;
}

.about-hero-squid.about-hero-squid--decor .container {
    position: relative;
    z-index: 2;
}

.about-title-squid {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 3rem;
    line-height: 1.15;
    color: var(--color-black);
    margin-bottom: var(--spacing-md);
}

.about-lead {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.125rem;
    color: var(--color-gray-dark);
}

.underline-accent {
    position: relative;
    display: inline-block;
}

.underline-accent::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 100%;
    height: 6px;
    background: var(--color-secondary);
    border-radius: 6px;
}

/* Founders Split */
.founders-split {
    background: var(--color-white);
}

.founders-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-2xl);
    align-items: center;
}

.founders-image img {
    border-radius: var(--radius-xl);
}

.founders-card {
    position: relative;
    background: var(--color-white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    padding: var(--spacing-xl);
    border: 1px solid var(--color-gray-light);
}

.founders-card__title {
    font-weight: 800;
    color: var(--color-black);
    font-size: 1.25rem;
    margin-bottom: var(--spacing-sm);
}

.founders-card__text {
    color: var(--color-gray);
    line-height: 1.7;
    margin-bottom: var(--spacing-md);
}

.founders-card__authors {
    color: var(--color-gray-dark);
    font-weight: 600;
}

.card-sticker {
    position: absolute;
    top: -14px;
    left: 50px;
    width: 50px;
    height: 28px;
}

.card-sticker::before,
.card-sticker::after {
    content: '';
    position: absolute;
    top: 0;
    width: 22px;
    height: 22px;
    border-radius: 8px;
    background: #ff8e75;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.card-sticker::before {
    left: 0;
}

.card-sticker::after {
    left: 26px;
}

/* Community CTA */
.community-cta {
    position: relative;
    background: var(--color-white);
    padding: var(--spacing-3xl) 0 var(--spacing-2xl);
    text-align: center;
}

.community-cta::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 80px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 80' preserveAspectRatio='none'%3E%3Cpath d='M0,40 Q300,10 600,40 T1200,40 L1200,80 L0,80 Z' fill='%23f1e4d2'/%3E%3C/svg%3E");
    background-size: cover;
    background-repeat: no-repeat;
}

.community-cta__title {
    font-family: 'Fredoka', var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
    color: var(--color-black);
    margin-bottom: var(--spacing-sm);
}

.community-cta__subtitle {
    color: var(--color-gray-dark);
    margin-bottom: var(--spacing-md);
}

/* ===================================
   Organic Background Shapes (Homepage)
   =================================== */
.bg-shape {
    position: absolute;
    display: block;
    z-index: 0;
    pointer-events: none;
    filter: drop-shadow(0 12px 28px rgba(0, 0, 0, 0.12));
    opacity: 0.7;
}

.blob-coral {
    background: radial-gradient(120% 120% at 20% 10%, rgba(214, 105, 67, 0.45) 0%, rgba(241, 228, 210, 0.65) 40%, rgba(241, 228, 210, 0.2) 100%);
    border-radius: 44% 56% 50% 60% / 60% 45% 55% 40%;
    transform: rotate(-8deg);
}

.blob-cream {
    background: radial-gradient(120% 120% at 70% 20%, rgba(241, 228, 210, 0.8) 0%, rgba(241, 228, 210, 0.4) 45%, rgba(214, 105, 67, 0.12) 100%);
    border-radius: 60% 40% 50% 55% / 55% 60% 45% 50%;
    transform: rotate(12deg);
}

.squircle-outline {
    background: transparent;
    border: 2px solid rgba(214, 105, 67, 0.25);
    border-radius: 30% 40% 55% 45% / 50% 30% 45% 60%;
    backdrop-filter: blur(0.5px);
}

/* Positions per section */
.shape-showcase-1 {
    width: 360px;
    height: 300px;
    top: -40px;
    left: -80px;
}

.shape-showcase-2 {
    width: 280px;
    height: 240px;
    bottom: -60px;
    right: -40px;
}

.shape-who-1 {
    width: 320px;
    height: 280px;
    top: -50px;
    right: -80px;
}

.shape-who-2 {
    width: 240px;
    height: 220px;
    bottom: -40px;
    left: -60px;
}

.shape-app-1 {
    width: 300px;
    height: 260px;
    top: -30px;
    left: -60px;
    opacity: 0.55;
}

.shape-app-2 {
    width: 260px;
    height: 240px;
    bottom: -50px;
    right: -40px;
    opacity: 0.55;
}

.shape-success-1 {
    width: 340px;
    height: 280px;
    top: -30px;
    left: -60px;
}

.shape-success-2 {
    width: 260px;
    height: 220px;
    bottom: -50px;
    right: -40px;
}

.shape-cta-1 {
    width: 360px;
    height: 300px;
    top: -30px;
    right: -60px;
}

/* How It Works shapes */
.shape-hiw-1 {
    width: 320px;
    height: 260px;
    top: -30px;
    left: -60px;
}

.shape-hiw-2 {
    width: 280px;
    height: 220px;
    bottom: -40px;
    right: -50px;
}

@media (max-width: 992px) {
    .bg-shape {
        opacity: 0.55;
        filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.1));
    }

    .shape-showcase-1 {
        width: 280px;
        height: 240px;
    }

    .shape-who-1 {
        width: 260px;
        height: 220px;
    }

    .shape-success-1 {
        width: 280px;
        height: 240px;
    }
}

@media (max-width: 768px) {
    .bg-shape {
        display: none;
    }
}

/* ===================================
   Brand Marquee (Hero altı)
   =================================== */
.brand-marquee {
    background: var(--color-white);
    padding: var(--spacing-md) 0;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.brand-marquee__viewport {
    overflow: hidden;
    position: relative;
    -webkit-mask-image: linear-gradient(to right, rgba(0, 0, 0, 0), rgba(0, 0, 0, 1) 10%, rgba(0, 0, 0, 1) 90%, rgba(0, 0, 0, 0));
    mask-image: linear-gradient(to right, rgba(0, 0, 0, 0), rgba(0, 0, 0, 1) 10%, rgba(0, 0, 0, 1) 90%, rgba(0, 0, 0, 0));
}

.brand-marquee__track {
    display: flex;
    align-items: center;
    gap: 48px;
    will-change: transform;
    animation: marquee-scroll 28s linear infinite;
}

.brand-logo {
    height: 32px;
    opacity: 0.6;
    filter: grayscale(100%);
    transition: transform var(--transition-fast), opacity var(--transition-fast);
}

.brand-logo:hover {
    opacity: 0.85;
    transform: translateY(-2px);
}

@keyframes marquee-scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

@media (max-width: 768px) {
    .brand-logo {
        height: 28px;
    }

    .brand-marquee__track {
        gap: 32px;
        animation-duration: 22s;
    }
}