:root {
    --apple-bg-primary: #fbfbfd;
    --apple-bg-secondary: #f5f5f7;
    --apple-text-primary: #1d1d1f;
    --apple-text-secondary: #6e6e73;
    --apple-text-muted: #86868b;
    --apple-link: #0066cc;
    --apple-link-hover: #0051a2;
    --apple-border: #d2d2d7;
    --apple-shadow-sm: 0 2px 5px rgba(0,0,0,0.05);
    --apple-shadow-md: 0 4px 12px rgba(0,0,0,0.08);
    --apple-shadow-lg: 0 12px 24px rgba(0,0,0,0.12);
    --apple-radius-sm: 8px;
    --apple-radius-md: 12px;
    --apple-radius-lg: 18px;
    --apple-transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);

    /* Refined Authority palette */
    --cream: #f7f5f0;
    --warm-gray: #e8e4de;
    --text-primary: #1a1a2e;
    --text-secondary: #5a5a6e;
}

* {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.apple-body {
    font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    font-size: 17px;
    line-height: 1.47059;
    font-weight: 400;
    letter-spacing: -0.022em;
    background-color: var(--apple-bg-primary);
    color: var(--apple-text-primary);
}

.apple-container {
    max-width: 980px;
    margin: 0 auto;
    padding: 0 22px;
}

.apple-container-wide {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 22px;
}

.apple-headline {
    font-size: 56px;
    line-height: 1.07143;
    font-weight: 600;
    letter-spacing: -0.005em;
    margin-bottom: 16px;
}

.apple-headline-medium {
    font-size: 40px;
    line-height: 1.1;
    font-weight: 600;
    letter-spacing: 0;
    margin-bottom: 12px;
}

.apple-headline-small {
    font-size: 32px;
    line-height: 1.125;
    font-weight: 600;
    letter-spacing: 0.004em;
    margin-bottom: 8px;
}

.apple-subheadline {
    font-size: 28px;
    line-height: 1.14286;
    font-weight: 400;
    letter-spacing: 0.007em;
    color: var(--apple-text-secondary);
}

.apple-body-text {
    font-size: 17px;
    line-height: 1.47059;
    font-weight: 400;
    letter-spacing: -0.022em;
}

.apple-caption {
    font-size: 12px;
    line-height: 1.33337;
    font-weight: 400;
    letter-spacing: -0.01em;
    color: var(--apple-text-muted);
}

.apple-nav {
    background: rgba(251, 251, 253, 0.8);
    backdrop-filter: saturate(180%) blur(20px);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    position: sticky;
    top: 0;
    z-index: 9999;
    border-bottom: 1px solid var(--apple-border);
    transition: var(--apple-transition);
}

.apple-nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 48px;
    max-width: 980px;
    margin: 0 auto;
    padding: 0 22px;
}

.apple-nav-link {
    color: var(--apple-text-primary);
    text-decoration: none;
    font-size: 12px;
    line-height: 1;
    font-weight: 400;
    letter-spacing: -0.01em;
    padding: 0 8px;
    opacity: 0.8;
    transition: var(--apple-transition);
}

.apple-nav-link:hover {
    opacity: 1;
    color: var(--apple-link);
}

.apple-button {
    display: inline-block;
    background: var(--apple-link);
    color: white;
    padding: 12px 24px;
    border-radius: var(--apple-radius-lg);
    font-size: 17px;
    line-height: 1.17648;
    font-weight: 400;
    letter-spacing: -0.022em;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: var(--apple-transition);
    text-align: center;
}

.apple-button:hover {
    background: var(--apple-link-hover);
    transform: scale(1.02);
    box-shadow: var(--apple-shadow-md);
}

.apple-button-secondary {
    background: transparent;
    color: var(--apple-link);
    border: 2px solid var(--apple-link);
}

.apple-button-secondary:hover {
    background: var(--apple-link);
    color: white;
}

.apple-card {
    background: white;
    border-radius: var(--apple-radius-lg);
    padding: 40px;
    box-shadow: var(--apple-shadow-sm);
    transition: var(--apple-transition);
}

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

.apple-card-image {
    width: 100%;
    height: auto;
    border-radius: var(--apple-radius-md);
    margin-bottom: 20px;
}

.apple-card-title {
    font-size: 24px;
    line-height: 1.16667;
    font-weight: 600;
    letter-spacing: 0.009em;
    margin-bottom: 8px;
}

.apple-card-description {
    font-size: 17px;
    line-height: 1.47059;
    color: var(--apple-text-secondary);
    margin-bottom: 16px;
}

.apple-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.apple-hero {
    background: linear-gradient(180deg, var(--apple-bg-primary) 0%, var(--apple-bg-secondary) 100%);
    padding: 80px 0;
    text-align: center;
}

.apple-hero-content {
    max-width: 820px;
    margin: 0 auto;
}

.apple-section {
    padding: 80px 0;
    background: var(--apple-bg-primary);
}

.apple-section-alt {
    background: var(--apple-bg-secondary);
}

.apple-link {
    color: var(--apple-link);
    text-decoration: none;
    transition: var(--apple-transition);
    position: relative;
}

.apple-link:hover {
    color: var(--apple-link-hover);
}

.apple-link-arrow::after {
    content: " ›";
    font-size: 1.2em;
    transition: var(--apple-transition);
}

.apple-link-arrow:hover::after {
    transform: translateX(3px);
    display: inline-block;
}

.apple-divider {
    border: none;
    border-top: 1px solid var(--apple-border);
    margin: 40px 0;
}

.apple-footer {
    background: var(--apple-bg-secondary);
    padding: 40px 0;
    font-size: 12px;
    line-height: 1.33337;
    color: var(--apple-text-muted);
}

.apple-footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 20px;
}

.apple-footer-link {
    color: var(--apple-text-secondary);
    text-decoration: none;
    transition: var(--apple-transition);
}

.apple-footer-link:hover {
    color: var(--apple-text-primary);
}

.apple-input {
    width: 100%;
    padding: 12px 16px;
    font-size: 17px;
    line-height: 1.29412;
    font-weight: 400;
    letter-spacing: -0.022em;
    background: white;
    border: 1px solid var(--apple-border);
    border-radius: var(--apple-radius-sm);
    transition: var(--apple-transition);
    outline: none;
}

.apple-input:focus {
    border-color: var(--apple-link);
    box-shadow: 0 0 0 4px rgba(0, 102, 204, 0.1);
}

.apple-select {
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14 8'%3e%3cpath d='M1 1l6 6 6-6' stroke='%236e6e73' stroke-width='1.5' fill='none' fill-rule='evenodd'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 14px;
    padding-right: 40px;
}

.apple-fade-in {
    animation: appleAnimationFadeIn 0.8s ease-out;
}

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

.apple-slide-up {
    animation: appleAnimationSlideUp 0.6s ease-out;
}

@keyframes appleAnimationSlideUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 1068px) {
    .apple-headline {
        font-size: 48px;
    }
    .apple-headline-medium {
        font-size: 32px;
    }
    .apple-subheadline {
        font-size: 24px;
    }
}

@media (max-width: 734px) {
    .apple-headline {
        font-size: 32px;
    }
    .apple-headline-medium {
        font-size: 28px;
    }
    .apple-headline-small {
        font-size: 24px;
    }
    .apple-subheadline {
        font-size: 19px;
    }
    .apple-hero {
        padding: 48px 0;
    }
    .apple-section {
        padding: 48px 0;
    }
    .apple-card {
        padding: 24px;
    }
    .apple-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

.apple-badge {
    display: inline-block;
    padding: 4px 12px;
    background: var(--apple-bg-secondary);
    color: var(--apple-text-secondary);
    border-radius: var(--apple-radius-sm);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.apple-badge-new {
    background: #ff6700;
    color: white;
}

/* ===================================
   EATPOL BRAND STYLES
   Standard classes for Eatpol pages
   =================================== */

:root {
    --bright-blue: #1297e0;
    --green: #00bf63;
    --dark-blue: #1b48ab;
    --medium-blue: #6990cd;
    --light-blue: #b8daef;
    --white: #ffffff;
    --navy: #112752;
    --gradient-primary: linear-gradient(135deg, var(--bright-blue), var(--dark-blue));
    --gradient-secondary: linear-gradient(135deg, var(--medium-blue), var(--light-blue));
    --gradient-cta: linear-gradient(135deg, var(--green), var(--bright-blue));
    --gradient-text: linear-gradient(135deg, var(--bright-blue), var(--green));
    --shadow: 0 4px 16px rgba(17, 39, 82, 0.15);
    --shadow-md: 0 6px 20px rgba(17, 39, 82, 0.12);
    --shadow-lg: 0 12px 40px rgba(17, 39, 82, 0.15);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --transition: all 0.3s ease;
}

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

body {
    font-family: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: var(--navy);
    background-color: #fbfbfd;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Header & Navigation */
.header {
    background: rgba(255, 255, 255, 0.85);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    backdrop-filter: saturate(180%) blur(20px);
    border-bottom: 1px solid rgba(17, 39, 82, 0.06);
    position: fixed;
    inset: 0 0 auto 0;
    z-index: 1000;
    transition: background 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}
.header--scrolled {
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 1px 8px rgba(17, 39, 82, 0.06);
}
.header--hidden { transform: translateY(-100%); }

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.9rem 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-family: 'Fraunces', serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--navy);
    text-decoration: none;
}

.logo:hover {
    color: var(--bright-blue);
}

.logo-img { height: 40px; width: auto; border-radius: 8px; }

.nav-menu {
    display: flex;
    list-style: none;
    align-items: center;
}

.nav-item {
    margin-left: 1.5rem;
}

.nav-link {
    font-family: 'Outfit', sans-serif;
    color: var(--warm-dark);
    font-weight: 500;
    font-size: 15px;
    position: relative;
    padding-bottom: 0.25rem;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--bright-blue);
    transition: var(--transition);
    border-radius: 1px;
}

.nav-link:hover {
    color: var(--bright-blue);
}

.nav-link:hover::after, .nav-link.active::after { width: 100%; }

.nav-link.active {
    color: var(--navy);
    font-weight: 600;
}

.hamburger {
    display: none;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
    padding: 10px;
    margin: -10px;
}

.bar {
    display: block;
    width: 22px;
    height: 2px;
    margin: 5px auto;
    transition: var(--transition);
    background-color: var(--navy);
    border-radius: 2px;
}

/* Nav Dropdowns */
.nav-dropdown {
    position: relative;
    list-style: none;
}
.nav-dropdown-toggle {
    color: var(--navy);
    font-weight: 500;
    font-size: 0.95rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    transition: var(--transition);
}
.nav-dropdown-toggle .chevron {
    font-size: 10px;
    transition: transform 0.25s ease;
    margin-left: 2px;
}
.nav-dropdown:hover .nav-dropdown-toggle {
    color: var(--bright-blue);
    background: rgba(18, 151, 224, 0.1);
}
.nav-dropdown:hover .chevron {
    transform: rotate(180deg);
}
.nav-dropdown-menu {
    position: absolute;
    top: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%) translateY(4px);
    min-width: 180px;
    background: rgba(255, 255, 255, 0.98);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    backdrop-filter: saturate(180%) blur(20px);
    border: 1px solid rgba(17, 39, 82, 0.08);
    border-radius: 10px;
    box-shadow: 0 8px 32px rgba(17, 39, 82, 0.12), 0 2px 8px rgba(17, 39, 82, 0.06);
    padding: 6px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
    z-index: 1001;
    list-style: none;
}
.nav-dropdown:hover .nav-dropdown-menu {
    opacity: 1;
    pointer-events: all;
    transform: translateX(-50%) translateY(0);
}
.nav-dropdown-menu li a {
    display: block;
    padding: 9px 16px;
    font-size: 14px;
    font-weight: 500;
    color: var(--navy);
    border-radius: 7px;
    transition: all 0.15s ease;
    text-decoration: none;
}
.nav-dropdown-menu li a:hover {
    background: rgba(18, 151, 224, 0.08);
    color: var(--bright-blue);
}
.nav-dropdown-menu li a.active {
    color: var(--bright-blue);
    font-weight: 600;
    background: rgba(18, 151, 224, 0.06);
}

/* Hero Section */
.hero {
    padding: 10rem 0 6rem;
    background: linear-gradient(135deg, #f8fbfd 0%, #ffffff 100%);
    text-align: center;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--bright-blue), var(--green));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--navy);
    opacity: 0.8;
    max-width: 700px;
    margin: 0 auto;
}

/* Section */
.section {
    padding: 5rem 0;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--navy);
    font-weight: 700;
}

/* Footer */
.footer {
    background: var(--navy);
    color: var(--white);
    padding: 4rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.footer-heading {
    color: var(--white);
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
    font-family: 'Outfit', system-ui, -apple-system, sans-serif;
}

.footer p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    line-height: 1.6;
    font-family: 'Outfit', system-ui, -apple-system, sans-serif;
}

.footer p[data-i18n="footer.about.text"] {
    color: #fff;
}

.footer-links {
    list-style: none;
}

.footer-link {
    margin-bottom: 0.8rem;
    display: block;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    font-family: 'Outfit', system-ui, -apple-system, sans-serif;
    line-height: 1.6;
}

.footer-link a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition);
    font-size: 0.95rem;
}

.footer-link a:hover {
    color: var(--bright-blue);
}

.footer-link i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    font-size: 1.1rem;
    transition: var(--transition);
}

.footer-link i:hover {
    background: var(--bright-blue);
    transform: translateY(-2px);
}

.contact-info .footer-link i {
    display: inline;
    width: auto;
    height: auto;
    border-radius: 0;
    background: none;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin-right: 0.4rem;
}

.contact-info .footer-link i:hover {
    background: none;
    transform: none;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger { display: flex; flex-direction: column; cursor: pointer; gap: 5px; z-index: 1001; }
    .hamburger.active .bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .hamburger.active .bar:nth-child(2) { opacity: 0; }
    .hamburger.active .bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
    .nav-menu { position: fixed; left: -100%; top: 0; flex-direction: column; background-color: rgba(255,255,255,0.98); -webkit-backdrop-filter: blur(20px); backdrop-filter: blur(20px); width: 100%; height: 100vh; text-align: center; transition: 0.3s; padding: 5rem 0 2rem; gap: 0; }
    .nav-menu.active { left: 0; }

    .nav-item {
        margin: 0.5rem 0;
    }

    .nav-dropdown {
        margin: 0.5rem 0;
    }
    .nav-dropdown-toggle {
        justify-content: center;
    }
    .nav-dropdown-toggle::after { display: none; }
    .nav-dropdown-menu {
        position: static;
        transform: none;
        opacity: 1;
        pointer-events: all;
        box-shadow: none;
        border: none;
        background: transparent;
        -webkit-backdrop-filter: none;
        backdrop-filter: none;
        padding: 0;
        min-width: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }
    .nav-dropdown.open .nav-dropdown-menu {
        max-height: 200px;
    }
    .nav-dropdown.open .chevron {
        transform: rotate(180deg);
    }
    .nav-dropdown-menu li a {
        padding: 8px 1rem;
        font-size: 14px;
    }

    .hero {
        padding: 8rem 0 4rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }
}