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

:root {
    --ocean-deep:  #0a2342;
    --ocean-mid:   #1a5276;
    --ocean-light: #2e86c1;
    --foam:        #e8f4fd;
    --sand:        #fdf6ec;
    --accent:      #f39c12;
    --text-dark:   #0d1b2a;
    --text-light:  #7fb3d3;
    --white:       #ffffff;
    --radius-sm:   8px;
    --radius-md:   16px;
    --radius-lg:   24px;
    --shadow-sm:   0 4px 20px rgba(10,35,66,.08);
    --shadow-md:   0 8px 32px rgba(10,35,66,.14);
    --shadow-lg:   0 16px 56px rgba(10,35,66,.20);
}

body {
    font-family: 'DM Sans', sans-serif;
    background-color: var(--sand);
    color: var(--text-dark);
    min-height: 100vh;
    overflow-x: hidden;
}

/* ══════════════════════════════════════
   NAVBAR
══════════════════════════════════════ */
.navbar {
    background: var(--ocean-deep);
    padding: 0 40px;
    position: sticky;
    top: 0;
    z-index: 200;
    border-bottom: 1px solid rgba(255,255,255,0.07);
}

.navbar-inner {
    max-width: 1060px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav-logo {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    font-weight: 900;
    color: #fff;
    text-decoration: none;
    white-space: nowrap;
    flex-shrink: 0;
}
.nav-logo span { color: var(--accent); font-style: italic; }

.navbar ul {
    list-style: none;
    display: flex;
    gap: 4px;
    flex: 1;
}

.navbar ul li a {
    display: block;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.5px;
    color: rgba(255,255,255,0.55);
    text-decoration: none;
    padding: 18px 16px;
    transition: color 0.2s ease;
    position: relative;
}

.navbar ul li a::after {
    content: '';
    position: absolute;
    bottom: 0; left: 16px; right: 16px;
    height: 2px;
    background: var(--accent);
    transform: scaleX(0);
    transition: transform 0.25s ease;
    border-radius: 2px 2px 0 0;
}

.navbar ul li a:hover,
.navbar ul li a.active { color: #fff; }

.navbar ul li a.active::after,
.navbar ul li a:hover::after { transform: scaleX(1); }

/* ══════════════════════════════════════
   HERO (HOMEPAGE)
══════════════════════════════════════ */
.hero {
    background: var(--ocean-deep);
    position: relative;
    padding: 80px 40px 160px;
    overflow: hidden;
}

.hero-bg-orb {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    filter: blur(80px);
    opacity: 0.18;
}
.orb-1 {
    width: 600px; height: 600px;
    background: var(--ocean-light);
    top: -200px; right: -100px;
}
.orb-2 {
    width: 400px; height: 400px;
    background: var(--accent);
    bottom: -100px; left: -100px;
}

.hero-wave {
    position: absolute;
    bottom: -1px; left: 0;
    width: 100%;
    height: 120px;
}

.hero-inner {
    max-width: 860px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.hero-eyebrow {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 20px;
}

h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(42px, 6vw, 76px);
    font-weight: 900;
    color: #fff;
    line-height: 1.05;
    margin-bottom: 32px;
}
h1 span { color: var(--accent); font-style: italic; }

.hero-divider {
    width: 60px; height: 3px;
    background: var(--accent);
    margin-bottom: 28px;
    border-radius: 2px;
}

.hero-desc {
    font-size: 17px;
    line-height: 1.85;
    color: rgba(255,255,255,0.72);
    font-weight: 300;
    max-width: 680px;
    margin-bottom: 0;
}

.hero-cta-row {
    display: flex;
    gap: 16px;
    margin-top: 36px;
    flex-wrap: wrap;
}

/* ══════════════════════════════════════
   PAGE HERO (subpagina's)
══════════════════════════════════════ */
.page-hero {
    background: var(--ocean-deep);
    position: relative;
    padding: 70px 40px 140px;
    overflow: hidden;
}
.page-hero-inner {
    max-width: 860px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* ══════════════════════════════════════
   BUTTONS
══════════════════════════════════════ */
.btn-primary {
    display: inline-block;
    background: var(--accent);
    color: var(--ocean-deep);
    border: none;
    border-radius: 100px;
    padding: 13px 28px;
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.3px;
    cursor: pointer;
    text-decoration: none;
    transition: opacity 0.2s, transform 0.2s;
}
.btn-primary:hover  { opacity: 0.88; transform: scale(1.03); }
.btn-primary:active { transform: scale(0.97); }

.btn-ghost {
    display: inline-block;
    background: transparent;
    color: rgba(255,255,255,0.75);
    border: 1.5px solid rgba(255,255,255,0.25);
    border-radius: 100px;
    padding: 12px 28px;
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    text-decoration: none;
    transition: border-color 0.2s, color 0.2s, background 0.2s;
}
.btn-ghost:hover {
    border-color: rgba(255,255,255,0.6);
    color: #fff;
    background: rgba(255,255,255,0.06);
}

/* ══════════════════════════════════════
   FEATURE PILLS
══════════════════════════════════════ */
.features {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 36px;
}
.pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    color: rgba(255,255,255,0.8);
    font-size: 13px;
    font-weight: 400;
    padding: 8px 16px;
    border-radius: 100px;
}
.pill-dot {
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--accent);
    flex-shrink: 0;
}

/* ══════════════════════════════════════
   SEARCH BAR
══════════════════════════════════════ */
.search-container {
    position: relative;
    width: 100%;
    max-width: 620px;
}
.hero-search { margin-top: 40px; }

.search-bar-dark {
    display: flex;
    align-items: center;
    background: rgba(255,255,255,0.07);
    border: 1.5px solid rgba(255,255,255,0.15);
    border-radius: 100px;
    padding: 6px 6px 6px 22px;
    transition: border-color 0.25s, background 0.25s;
}
.search-bar-dark:focus-within {
    border-color: var(--accent);
    background: rgba(255,255,255,0.10);
}
.search-bar-dark .search-icon { flex-shrink:0; color: rgba(255,255,255,0.35); transition: color 0.25s; }
.search-bar-dark:focus-within .search-icon { color: var(--accent); }

.search-bar-light {
    display: flex;
    align-items: center;
    background: #fff;
    border: 1.5px solid rgba(46,134,193,0.25);
    border-radius: 100px;
    padding: 6px 6px 6px 22px;
    box-shadow: var(--shadow-sm);
    transition: border-color 0.25s, box-shadow 0.25s;
}
.search-bar-light:focus-within {
    border-color: var(--ocean-light);
    box-shadow: 0 4px 28px rgba(46,134,193,0.18);
}
.search-bar-light .search-icon { flex-shrink:0; color: var(--text-light); transition: color 0.25s; }
.search-bar-light:focus-within .search-icon { color: var(--ocean-light); }

.search-input {
    flex: 1;
    border: none;
    outline: none;
    background: transparent;
    font-family: 'DM Sans', sans-serif;
    font-size: 15px;
    font-weight: 400;
    color: #fff;
    padding: 0 14px;
}
.search-bar-light .search-input { color: var(--text-dark); }
.search-input::placeholder { color: rgba(255,255,255,0.35); font-weight: 300; }
.search-bar-light .search-input::placeholder { color: var(--text-light); }

.search-btn-accent {
    flex-shrink: 0;
    background: var(--accent);
    color: var(--ocean-deep);
    border: none;
    border-radius: 100px;
    padding: 10px 22px;
    font-family: 'DM Sans', sans-serif;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.25s, transform 0.2s;
}
.search-btn-accent:hover  { opacity: 0.88; transform: scale(1.03); }
.search-btn-accent:active { transform: scale(0.97); }

.search-btn {
    flex-shrink: 0;
    background: var(--ocean-deep);
    color: #fff;
    border: none;
    border-radius: 100px;
    padding: 10px 22px;
    font-family: 'DM Sans', sans-serif;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.25s, transform 0.2s;
}
.search-btn:hover  { background: var(--ocean-mid); transform: scale(1.03); }
.search-btn:active { transform: scale(0.97); }

/* ══════════════════════════════════════
   DROPDOWN SUGGESTIES
══════════════════════════════════════ */
.suggestions {
    position: absolute;
    top: calc(100% + 8px); left: 0; right: 0;
    background: #fff;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    border: 1.5px solid rgba(46,134,193,0.15);
    opacity: 0;
    transform: translateY(-6px);
    pointer-events: none;
    transition: opacity 0.2s, transform 0.2s;
    z-index: 100;
}
.suggestions.open { opacity: 1; transform: translateY(0); pointer-events: auto; }

.suggestion-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 13px 20px;
    cursor: pointer;
    transition: background 0.15s;
    border-bottom: 1px solid var(--foam);
}
.suggestion-item:last-child { border-bottom: none; }
.suggestion-item:hover { background: var(--foam); }

.suggestion-icon {
    width: 32px; height: 32px;
    border-radius: var(--radius-sm);
    background: var(--foam);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ocean-light);
    flex-shrink: 0;
}
.suggestion-text strong { display:block; font-size:14px; font-weight:500; color:var(--ocean-deep); }
.suggestion-text span   { font-size:12px; color:var(--text-light); }

/* ══════════════════════════════════════
   LAYOUT
══════════════════════════════════════ */
.container {
    max-width: 1060px;
    margin: 0 auto;
    padding: 80px 40px 100px;
}

.section-header {
    text-align: center;
    margin-bottom: 52px;
}
.section-label {
    display: block;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--ocean-light);
    margin-bottom: 12px;
}
.section-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 700;
    color: var(--ocean-deep);
    line-height: 1.2;
}

/* ══════════════════════════════════════
   FEATURES GRID (homepage)
══════════════════════════════════════ */
.features-section { background: var(--white); }
.features-section .container { padding-top: 80px; padding-bottom: 80px; }

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
}

.feature-card {
    background: var(--sand);
    border: 1.5px solid rgba(46,134,193,0.1);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    text-decoration: none;
    color: inherit;
    transition: transform 0.3s cubic-bezier(0.23,1,0.32,1), box-shadow 0.3s, border-color 0.3s;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: rgba(46,134,193,0.3);
}
.feature-icon {
    width: 52px; height: 52px;
    background: var(--foam);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ocean-light);
    margin-bottom: 4px;
}
.feature-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 19px;
    font-weight: 700;
    color: var(--ocean-deep);
}
.feature-card p { font-size: 14px; line-height: 1.7; color: #4a6480; flex: 1; }
.feature-link { font-size: 13px; font-weight: 500; color: var(--ocean-light); margin-top: 4px; }

/* ══════════════════════════════════════
   TEAM GALLERY
══════════════════════════════════════ */
.gallery {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}
.card {
    width: 140px;
    background: #fff;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform 0.35s cubic-bezier(0.23,1,0.32,1), box-shadow 0.35s;
    cursor: pointer;
    position: relative;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }

.card-img-wrap { width: 140px; height: 170px; overflow: hidden; }
.Foto {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s cubic-bezier(0.23,1,0.32,1);
}
.card:hover .Foto { transform: scale(1.07); }

.card-body { padding: 14px 16px 16px; }
.card-body p { font-family:'Playfair Display',serif; font-size:15px; font-weight:700; color:var(--ocean-deep); margin-bottom:2px; }
.card-role { font-size:11px; font-weight:400; color:var(--text-light); letter-spacing:0.5px; }

.card-accent {
    position: absolute;
    bottom: 0; left: 0; width: 100%; height: 3px;
    background: linear-gradient(90deg, var(--ocean-light), var(--accent));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.35s ease;
}
.card:hover .card-accent { transform: scaleX(1); }

/* ══════════════════════════════════════
   BOARD SEARCHER
══════════════════════════════════════ */
.board-section { padding-top: 60px; }

.filter-bar {
    display: flex;
    align-items: flex-end;
    gap: 32px;
    flex-wrap: wrap;
    margin-bottom: 52px;
    padding: 28px 32px;
    background: #fff;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1.5px solid rgba(46,134,193,0.1);
}
.filter-group { display: flex; flex-direction: column; gap: 10px; }
.filter-label { font-size: 11px; font-weight: 500; letter-spacing: 2px; text-transform: uppercase; color: var(--text-light); }

.filter-pills { display: flex; gap: 8px; flex-wrap: wrap; }
.filter-pill {
    background: var(--foam);
    border: 1.5px solid transparent;
    color: var(--ocean-mid);
    font-size: 13px;
    font-weight: 500;
    padding: 7px 16px;
    border-radius: 100px;
    cursor: pointer;
    transition: all 0.2s;
    font-family: 'DM Sans', sans-serif;
}
.filter-pill:hover   { border-color: var(--ocean-light); }
.filter-pill.active  { background: var(--ocean-deep); color: #fff; border-color: var(--ocean-deep); }

.board-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
}

.board-card {
    background: #fff;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1.5px solid rgba(46,134,193,0.08);
    transition: transform 0.3s cubic-bezier(0.23,1,0.32,1), box-shadow 0.3s;
}
.board-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }

.board-card-top {
    background: linear-gradient(135deg, var(--ocean-deep) 0%, var(--ocean-mid) 100%);
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}
.board-card-top::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 70% 30%, rgba(243,156,18,0.15), transparent 60%);
}

/* Board CSS shapes */
.board-shape {
    position: relative;
    z-index: 1;
    background: rgba(255,255,255,0.15);
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 50%;
    backdrop-filter: blur(4px);
}
.longboard  { width: 38px; height: 140px; border-radius: 40% 40% 35% 35% / 10% 10% 8% 8%; }
.funboard   { width: 44px; height: 120px; border-radius: 38% 38% 30% 30% / 12% 12% 8% 8%; }
.malibu     { width: 42px; height: 110px; border-radius: 36% 36% 28% 28% / 12% 12% 8% 8%; }
.fish       { width: 50px; height: 88px;  border-radius: 38% 38% 20% 20% / 14% 14% 24% 24%; }
.shortboard { width: 36px; height: 100px; border-radius: 25% 25% 20% 20% / 8% 8% 6% 6%; }
.gun        { width: 32px; height: 135px; border-radius: 20% 20% 14% 14% / 6% 6% 5% 5%; }

.board-card-body { padding: 20px 22px 24px; }

.board-meta { display: flex; gap: 8px; margin-bottom: 12px; flex-wrap: wrap; }
.board-tag {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.5px;
    padding: 4px 10px;
    border-radius: 100px;
}
.board-tag.beginner     { background: #e8f8f0; color: #1a8f50; }
.board-tag.intermediate { background: #fff4e0; color: #d68000; }
.board-tag.advanced     { background: #fce8e8; color: #c0392b; }
.board-tag.wave-small   { background: var(--foam); color: var(--ocean-light); }
.board-tag.wave-medium  { background: var(--foam); color: var(--ocean-mid); }
.board-tag.wave-big     { background: rgba(10,35,66,0.07); color: var(--ocean-deep); }

.board-card-body h3 {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--ocean-deep);
    margin-bottom: 8px;
}
.board-card-body p { font-size: 13.5px; line-height: 1.7; color: #4a6480; margin-bottom: 16px; }

.board-specs {
    display: flex;
    gap: 16px;
    padding: 14px 0;
    border-top: 1px solid var(--foam);
    border-bottom: 1px solid var(--foam);
    margin-bottom: 16px;
}
.spec { display: flex; flex-direction: column; gap: 2px; }
.spec-label { font-size: 10px; letter-spacing: 1px; text-transform: uppercase; color: var(--text-light); }
.spec-val { font-size: 14px; font-weight: 600; color: var(--ocean-deep); }

.board-btn {
    background: var(--ocean-deep);
    color: #fff;
    border: none;
    border-radius: 100px;
    padding: 10px 20px;
    font-family: 'DM Sans', sans-serif;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
    width: 100%;
}
.board-btn:hover  { background: var(--ocean-mid); }
.board-btn:active { transform: scale(0.98); }

/* ══════════════════════════════════════
   SCHOOL
══════════════════════════════════════ */
.lessons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    align-items: start;
}

.lesson-card {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    box-shadow: var(--shadow-sm);
    border: 1.5px solid rgba(46,134,193,0.1);
    position: relative;
    transition: transform 0.3s, box-shadow 0.3s;
}
.lesson-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

.lesson-card--featured {
    background: var(--ocean-deep);
    border-color: transparent;
    color: #fff;
}
.lesson-card--featured h3 { color: #fff; }
.lesson-card--featured p  { color: rgba(255,255,255,0.75); }
.lesson-card--featured .lesson-includes li { color: rgba(255,255,255,0.75); }
.lesson-card--featured .lesson-includes li::before { background: var(--accent); }
.lesson-card--featured .lesson-price .price-amount { color: var(--accent); }
.lesson-card--featured .lesson-price .price-per    { color: rgba(255,255,255,0.55); }

.lesson-featured-badge {
    position: absolute;
    top: -12px; right: 24px;
    background: var(--accent);
    color: var(--ocean-deep);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 4px 14px;
    border-radius: 100px;
}

.lesson-icon {
    width: 56px; height: 56px;
    border-radius: var(--radius-md);
    background: var(--foam);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ocean-light);
    margin-bottom: 16px;
}
.lesson-card--featured .lesson-icon {
    background: rgba(255,255,255,0.12);
    color: var(--accent);
}

.lesson-level-badge {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.5px;
    padding: 4px 12px;
    border-radius: 100px;
    margin-bottom: 12px;
}
.beginner-badge     { background: #e8f8f0; color: #1a8f50; }
.intermediate-badge { background: rgba(243,156,18,0.15); color: var(--accent); }
.advanced-badge     { background: #fce8e8; color: #c0392b; }

.lesson-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--ocean-deep);
    margin-bottom: 10px;
}
.lesson-card p { font-size: 14px; line-height: 1.7; color: #4a6480; margin-bottom: 20px; }

.lesson-includes {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 24px;
}
.lesson-includes li {
    font-size: 13.5px;
    color: #4a6480;
    padding-left: 18px;
    position: relative;
}
.lesson-includes li::before {
    content: '';
    position: absolute;
    left: 0; top: 7px;
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--ocean-light);
}

.lesson-price {
    display: flex;
    align-items: baseline;
    gap: 6px;
    margin-bottom: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--foam);
}
.lesson-card--featured .lesson-price { border-top-color: rgba(255,255,255,0.15); }
.price-amount { font-family: 'Playfair Display', serif; font-size: 32px; font-weight: 700; color: var(--ocean-deep); }
.price-per    { font-size: 13px; color: var(--text-light); }

/* ══════════════════════════════════════
   STATS BAR
══════════════════════════════════════ */
.stats-bar {
    background: var(--ocean-deep);
    padding: 48px 40px;
}
.stats-inner {
    max-width: 860px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    flex-wrap: wrap;
}
.stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding: 16px 48px;
}
.stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    font-weight: 700;
    color: var(--accent);
}
.stat-label { font-size: 13px; color: rgba(255,255,255,0.55); text-align: center; }
.stat-divider {
    width: 1px; height: 50px;
    background: rgba(255,255,255,0.12);
}

/* ══════════════════════════════════════
   TESTIMONIALS
══════════════════════════════════════ */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
}
.testimonial-card {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 28px;
    box-shadow: var(--shadow-sm);
    border: 1.5px solid rgba(46,134,193,0.1);
}
.testimonial-card p {
    font-size: 15px;
    line-height: 1.75;
    color: #4a6480;
    font-style: italic;
    margin-bottom: 20px;
}
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar {
    width: 38px; height: 38px;
    border-radius: 50%;
    background: var(--ocean-mid);
    color: #fff;
    font-weight: 700;
    font-size: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.testimonial-author strong { display: block; font-size: 14px; color: var(--ocean-deep); }
.testimonial-author span   { font-size: 12px; color: var(--text-light); }

/* ══════════════════════════════════════
   DOWNLOAD PAGE
══════════════════════════════════════ */
.download-centered {
    max-width: 480px;
    margin: 0 auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}
.download-centered h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 700;
    color: var(--ocean-deep);
    line-height: 1.2;
}
.download-windows-btn {
    margin-top: 8px;
    padding: 18px 36px;
    border-radius: var(--radius-md);
    font-size: 15px;
    gap: 16px;
}

.download-layout {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 80px;
    align-items: center;
}

.download-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 700;
    color: var(--ocean-deep);
    margin-bottom: 16px;
    line-height: 1.2;
}
.download-desc { font-size: 16px; line-height: 1.8; color: #4a6480; margin-bottom: 32px; }

.download-btns { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 32px; }

.download-store-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--ocean-deep);
    color: #fff;
    text-decoration: none;
    padding: 14px 24px;
    border-radius: var(--radius-md);
    transition: background 0.2s, transform 0.2s;
    min-width: 160px;
}
.download-store-btn:hover { background: var(--ocean-mid); transform: scale(1.02); }

.store-small { display: block; font-size: 11px; color: rgba(255,255,255,0.6); line-height: 1; }
.store-big   { display: block; font-size: 16px; font-weight: 600; line-height: 1.4; }

.app-features { display: flex; flex-direction: column; gap: 10px; }
.app-feature-item { display: flex; align-items: center; gap: 10px; font-size: 14px; color: #4a6480; }
.app-feature-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--ocean-light);
    flex-shrink: 0;
}

/* Phone mockup */
.app-mockup { display: flex; justify-content: center; }
.phone-frame {
    width: 220px;
    background: var(--ocean-deep);
    border-radius: 32px;
    padding: 12px;
    box-shadow: var(--shadow-lg), inset 0 0 0 1px rgba(255,255,255,0.1);
}
.phone-screen {
    background: var(--sand);
    border-radius: 22px;
    overflow: hidden;
    min-height: 380px;
}
.phone-status-bar {
    background: var(--ocean-deep);
    color: #fff;
    font-size: 11px;
    font-weight: 500;
    padding: 8px 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.phone-app { padding: 16px; }
.phone-app-header { margin-bottom: 16px; }
.phone-logo {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--ocean-deep);
}
.phone-logo em { color: var(--accent); font-style: italic; }

.phone-card {
    background: var(--ocean-deep);
    border-radius: var(--radius-md);
    padding: 14px;
    margin-bottom: 12px;
    color: #fff;
}
.phone-card-label { font-size: 10px; letter-spacing: 1.5px; text-transform: uppercase; color: rgba(255,255,255,0.5); margin-bottom: 10px; }
.phone-board-preview { display: flex; align-items: center; gap: 12px; }
.phone-board-shape {
    width: 18px; height: 60px;
    background: rgba(255,255,255,0.2);
    border-radius: 40% 40% 30% 30% / 10% 10% 8% 8%;
    border: 1px solid rgba(255,255,255,0.3);
    flex-shrink: 0;
}
.phone-board-info strong { display: block; font-size: 13px; font-weight: 600; }
.phone-board-info span   { font-size: 11px; color: rgba(255,255,255,0.6); }

.phone-spots { padding-top: 4px; }
.phone-spots-label { font-size: 10px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--text-light); margin-bottom: 10px; }
.phone-spot-item { font-size: 12px; color: var(--ocean-deep); padding: 7px 10px; background: #fff; border-radius: var(--radius-sm); margin-bottom: 6px; }

/* ══════════════════════════════════════
   CONTACT SECTIE
══════════════════════════════════════ */
.contact-section {
    background: var(--white);
    padding-bottom: 0;
}
.contact-section .container { padding-top: 80px; padding-bottom: 100px; }

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    align-items: start;
}

.contact-info { display: flex; flex-direction: column; gap: 28px; }
.contact-item { display: flex; align-items: flex-start; gap: 16px; }
.contact-icon {
    width: 44px; height: 44px;
    background: var(--foam);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ocean-light);
    flex-shrink: 0;
}
.contact-item strong { display: block; font-size: 14px; font-weight: 600; color: var(--ocean-deep); margin-bottom: 2px; }
.contact-item p { font-size: 14px; color: #4a6480; }

.contact-form { display: flex; flex-direction: column; gap: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group label { font-size: 12px; font-weight: 600; letter-spacing: 0.5px; color: var(--ocean-deep); text-transform: uppercase; }

.contact-form input,
.contact-form textarea {
    width: 100%;
    border: 1.5px solid rgba(46,134,193,0.2);
    border-radius: var(--radius-sm);
    padding: 12px 16px;
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    color: var(--text-dark);
    background: var(--sand);
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
    resize: vertical;
}
.contact-form input:focus,
.contact-form textarea:focus {
    border-color: var(--ocean-light);
    box-shadow: 0 0 0 3px rgba(46,134,193,0.1);
}

/* ══════════════════════════════════════
   FOOTER
══════════════════════════════════════ */
.footer-strip { background: var(--ocean-deep); }

.footer-inner {
    max-width: 1060px;
    margin: 0 auto;
    padding: 48px 40px 32px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand { display: flex; flex-direction: column; gap: 8px; }
.footer-logo {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    font-weight: 700;
    color: #fff;
}
.footer-logo span { color: var(--accent); font-style: italic; }
.footer-brand p { font-size: 13px; color: rgba(255,255,255,0.35); }

.footer-links {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    align-items: center;
}
.footer-links a {
    font-size: 13px;
    color: rgba(255,255,255,0.45);
    text-decoration: none;
    transition: color 0.2s;
}
.footer-links a:hover { color: #fff; }

.footer-bottom {
    max-width: 1060px;
    margin: 0 auto;
    padding: 20px 40px;
    text-align: center;
}
.footer-bottom p { font-size: 12px; color: rgba(255,255,255,0.25); letter-spacing: 0.5px; }

/* ══════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════ */
@media (max-width: 860px) {
    .download-layout  { grid-template-columns: 1fr; }
    .app-mockup       { display: none; }
    .contact-grid     { grid-template-columns: 1fr; }
    .form-row         { grid-template-columns: 1fr; }
    .stats-inner      { gap: 0; }
    .stat             { padding: 16px 28px; }
    .stat-divider     { display: none; }
}

@media (max-width: 600px) {
    .navbar { padding: 0 20px; }
    .navbar-inner { gap: 20px; }
    .navbar ul { gap: 0; }
    .navbar ul li a { padding: 16px 10px; font-size: 12px; }

    .hero, .page-hero { padding: 56px 24px 140px; }
    .container        { padding: 56px 24px 80px; }

    .filter-bar { padding: 20px; gap: 20px; }
    .footer-inner { padding: 40px 24px 24px; flex-direction: column; gap: 24px; }
    .footer-bottom { padding: 16px 24px; }
}
