@import 'dropdown.css';

/* Navigation - Apple Global Nav Style */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--nav-height);
    /* 44px compact */
    background: rgba(251, 251, 253, 0.8);
    backdrop-filter: saturate(180%) blur(20px);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.16);
    /* Very subtle separator */
    z-index: 9999;
    box-shadow: none;
    /* Apple nav has no shadow usually */
    border-radius: 0;
    max-width: 100%;
    transform: none;
}

.navbar .container {
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 980px;
    /* Standard Apple content width */
    margin: 0 auto;
    padding: 0 22px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    /* Closer gap */
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.logo:hover {
    opacity: 1;
}

.logo img {
    height: 18px;
    /* Small, iconic Apple logo size */
    width: auto;
}

/* We might hide the text for pure Apple minimal look, or keep it very subtle */
.logo-text {
    display: flex;
    flex-direction: row;
    /* Single line */
    align-items: baseline;
    gap: 6px;
    height: auto;
    padding: 0;
}

.logo .brand-name {
    font-family: "SF Pro Display", sans-serif;
    font-size: 14px;
    /* Small text */
    font-weight: 600;
    color: var(--text-main);
    letter-spacing: -0.01em;
    text-transform: none;
    /* Apple uses Title Case mostly, not Uppercase */
}

.logo .brand-sub {
    font-size: 14px;
    font-weight: 400;
    color: var(--text-light);
    letter-spacing: 0;
    margin: 0;
    text-transform: none;
}

.nav-links {
    display: flex;
    gap: 24px;
    margin: 0;
}

.nav-links a {
    color: rgba(0, 0, 0, 0.8);
    font-weight: 400;
    text-decoration: none;
    font-size: 12px;
    /* Very small, elegant text */
    transition: color 0.3s ease;
    opacity: 0.8;
}

.nav-links a:hover,
.nav-links a.active {
    color: #000;
    opacity: 1;
}

.nav-actions {
    display: none;
    /* Hide for true minimalist nav, or keep very small */
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 16px;
    /* Compact */
    border-radius: 980px;
    /* Full capsule */
    font-weight: 400;
    font-size: 14px;
    /* Smaller font */
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0, 0, 0.5, 1);
    cursor: pointer;
    border: none;
    line-height: normal;
}

.btn-primary {
    background: var(--primary-color);
    color: white;
    padding: 8px 22px;
    font-size: 17px;
    /* Call to action size */
    font-weight: 400;
    box-shadow: none;
    min-width: 28px;
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: none;
    box-shadow: none;
}

.btn-sm {
    padding: 4px 12px;
    font-size: 12px;
    font-weight: 400;
    background: #0071e3;
    color: white;
}

.btn-glass {
    background: none;
    color: var(--primary-color);
    padding: 0;
    /* Text link style */
    font-size: 17px;
    /* Consistent with CTA */
    border: none;
    backdrop-filter: none;
}

.btn-glass::after {
    content: " >";
    font-size: 0.8em;
    margin-left: 4px;
}

.btn-glass:hover {
    background: none;
    text-decoration: underline;
    border-color: transparent;
}

/* Bento Grid Strategy Cards */
.strategy-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    /* Tighter gap */
    width: 100%;
}

.strategy-card {
    background: var(--bg-white);
    border-radius: 28px;
    /* Large radius */
    padding: 40px;
    box-shadow: var(--shadow-md);
    border: none;
    backdrop-filter: none;
    display: flex;
    flex-direction: column;
    /* Stack vertically like Apple cards */
    align-items: center;
    text-align: center;
    overflow: hidden;
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    height: 500px;
    /* Fixed height for bento box feel */
    justify-content: flex-start;
}

.strategy-card:hover {
    transform: scale(1.02);
    /* Subtle zoom */
    box-shadow: var(--shadow-lg);
}

.strategy-card::after {
    display: none;
    /* Remove gradient bar */
}

.strategy-icon {
    width: 100%;
    height: 250px;
    margin-top: auto;
    /* Push to bottom or distribute */
    order: 2;
    /* Image at bottom */
}

.strategy-info {
    order: 1;
    /* content at top */
    width: 100%;
}

.strategy-info h3 {
    font-size: 40px;
    margin-bottom: 8px;
    color: var(--text-main);
    font-weight: 600;
}

.strategy-info .tag {
    display: inline-block;
    color: var(--error-color, #bf4800);
    /* Orange tag usually */
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    background: none;
    padding: 0;
}

.strategy-info p {
    font-size: 19px;
    /* Description text size */
    color: var(--text-main);
    line-height: 1.4;
    max-width: 80%;
    margin: 0 auto;
}

/* Product Cards styles moved to style.css to support carousel layout */


/* Footer (Updated to Clean Apple Footer) */
.footer {
    background: var(--bg-color);
    /* Same as body */
    padding-top: 60px;
    padding-bottom: 40px;
    border-top: none;
    margin-top: 0;
    font-size: 12px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    /* classic columns */
    gap: 20px;
    border-bottom: 1px solid #d2d2d7;
    padding-bottom: 20px;
    margin-bottom: 20px;
}

.footer-col {
    min-width: auto;
}

.footer-col h4 {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-main);
    margin-bottom: 10px;
}

.footer-col ul li {
    margin-bottom: 8px;
}

.footer-col ul li a {
    color: var(--text-light);
    font-size: 12px;
}

.footer-col ul li a:hover {
    text-decoration: underline;
    color: var(--text-main);
}

@media (max-width: 768px) {
    .navbar .container {
        padding: 0 16px;
    }

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

    .hero-title {
        font-size: 40px;
    }
}