/* ============================================
   LapDrop - Device Logistics for Canadian Teams
   Brand Colors:
   - Primary Purple: #533CC6
   - Dark Charcoal: #1E2329
   - Light Gray BG: #F4F5F7
   - Mid Gray: #A7AEB7
   - Accent Green: #08A57C
   Font: Poppins (Gilroy alternative)
   ============================================ */

/* Reset & Base */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --primary: #533CC6;
    --primary-dark: #432fa3;
    --primary-light: #6b50d9;
    --text-dark: #1E2329;
    --text-light: #4a5568;
    --bg-light: #F4F5F7;
    --bg-white: #ffffff;
    --border-gray: #A7AEB7;
    --accent-green: #08A57C;
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.12);
    --radius-sm: 6px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --transition: 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 32px;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.15;
    color: var(--text-dark);
    letter-spacing: -0.02em;
}

h1 {
    font-size: clamp(40px, 5vw, 60px);
    line-height: 1.1;
}

h2 {
    font-size: clamp(32px, 4vw, 44px);
    text-align: center;
    margin-bottom: 20px;
}

h3 {
    font-size: clamp(18px, 2vw, 22px);
    font-weight: 600;
}

p {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 16px;
}

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

ul {
    list-style: none;
}

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

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    font-size: 16px;
    font-weight: 600;
    border-radius: var(--radius-sm);
    border: 2px solid transparent;
    cursor: pointer;
    transition: all var(--transition);
    text-align: center;
}

.btn-primary {
    background-color: var(--primary);
    color: #ffffff;
    border-color: var(--primary);
    font-weight: 600;
    text-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
}

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

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

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

.btn-tertiary {
    background-color: transparent;
    color: var(--text-dark);
    border-color: var(--border-gray);
}

.btn-tertiary:hover {
    border-color: var(--text-dark);
    transform: translateY(-2px);
}

.btn-full {
    width: 100%;
}

.btn-nav {
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.3px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 24px 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar .logo img {
    height: 52px;
    transition: height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar.scrolled {
    padding: 14px 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    background: rgba(255, 255, 255, 0.98);
}

.navbar.scrolled .logo img {
    height: 38px;
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 22px;
    font-weight: 700;
    color: var(--text-dark);
}

.logo img {
    height: 36px;
    width: auto;
    display: block;
}

.logo:hover {
    opacity: 0.8;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-links a {
    font-size: 15px;
    font-weight: 500;
    color: var(--text-light);
}

.nav-links a:hover {
    color: var(--primary);
}

.nav-links .btn-primary {
    color: #ffffff !important;
}

.nav-links .btn-primary:hover {
    color: #ffffff !important;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-menu-btn span {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--text-dark);
    transition: all var(--transition);
}

/* Hero Section */
.hero {
    padding: 140px 0 80px;
    background: linear-gradient(180deg, var(--bg-white) 0%, var(--bg-light) 100%);
    overflow: hidden;
    min-height: 90vh;
    display: flex;
    align-items: center;
}

.hero .container {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 80px;
    align-items: center;
}

.hero-content h1 {
    margin-bottom: 24px;
}

.hero-subtitle {
    font-size: 19px;
    margin-bottom: 20px;
    max-width: 520px;
    line-height: 1.7;
}

.hero-pricing {
    font-size: 17px;
    color: var(--text-dark);
    margin-bottom: 36px;
    padding: 16px 20px;
    background: rgba(83, 60, 198, 0.08);
    border-radius: var(--radius-md);
    display: inline-block;
}

.hero-pricing strong {
    color: var(--primary);
    font-size: 20px;
    font-weight: 700;
}

.hero-ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

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

.device-illustration svg {
    width: 100%;
    max-width: 420px;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(83, 60, 198, 0.15));
}

/* Section Styles */
section {
    padding: 100px 0;
}

.section-subtitle {
    text-align: center;
    font-size: 18px;
    max-width: 620px;
    margin: 0 auto 50px;
    color: var(--text-light);
    line-height: 1.7;
}

/* Why LapDrop */
.why-lapdrop {
    background-color: var(--bg-light);
    padding: 100px 0 110px;
}

.value-props {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 28px;
    margin-top: 50px;
}

.value-card {
    background: var(--bg-white);
    padding: 36px 32px;
    border-radius: var(--radius-lg);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    transition: all var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.value-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(83, 60, 198, 0.12);
    border-color: rgba(83, 60, 198, 0.1);
}

.value-icon {
    margin-bottom: 22px;
}

.value-card h3 {
    margin-bottom: 14px;
    color: var(--text-dark);
}

.value-card p {
    font-size: 15px;
    line-height: 1.65;
}

/* How It Works */
.how-it-works {
    background-color: var(--bg-white);
    padding: 110px 0;
}

.steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 60px;
    position: relative;
}

.steps::before {
    content: '';
    position: absolute;
    top: 28px;
    left: 15%;
    right: 15%;
    height: 2px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--border-gray) 100%);
    z-index: 0;
}

.step {
    text-align: center;
    position: relative;
    z-index: 1;
}

.step-number {
    width: 56px;
    height: 56px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: 700;
    margin: 0 auto 24px;
    box-shadow: 0 4px 16px rgba(83, 60, 198, 0.3);
    position: relative;
    z-index: 2;
}

.step-content h3 {
    margin-bottom: 12px;
}

.step-content p {
    font-size: 15px;
    max-width: 220px;
    margin: 0 auto;
}

.step-connector {
    display: none;
}

/* Pricing */
.pricing {
    background-color: var(--bg-light);
    padding: 110px 0;
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
    margin-top: 60px;
    align-items: normal;
}

.pricing-card {
    background: var(--bg-white);
    border-radius: 16px;
    padding: 40px 32px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    position: relative;
    transition: all var(--transition);
    display: flex;
    flex-direction: column;
    border: 1px solid transparent;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 40px rgba(83, 60, 198, 0.12);
}

.pricing-card.featured {
    border: 2px solid var(--primary);
    transform: scale(1.03);
    box-shadow: 0 8px 32px rgba(83, 60, 198, 0.18);
    z-index: 2;
}

.pricing-card.featured:hover {
    transform: scale(1.03) translateY(-8px);
}

.pricing-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: white;
    padding: 8px 24px;
    border-radius: 24px;
    font-size: 13px;
    font-weight: 600;
    white-space: nowrap;
    box-shadow: 0 4px 12px rgba(83, 60, 198, 0.3);
}

.pricing-header {
    text-align: center;
    margin-bottom: 28px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--bg-light);
}

.pricing-header h3 {
    margin-bottom: 16px;
    font-size: 20px;
}

.price {
    font-size: 48px;
    font-weight: 700;
    color: var(--text-dark);
}

.price span {
    font-size: 18px;
    font-weight: 500;
    color: var(--text-light);
}

.pricing-features {
    margin-bottom: 32px;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    color: var(--text-light);
}

.pricing-features svg {
    flex-shrink: 0;
}

.pricing-addons {
    text-align: center;
    margin-top: 60px;
}

.pricing-addons h3 {
    margin-bottom: 20px;
}

.addons-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}

.addon {
    background: var(--bg-white);
    padding: 10px 20px;
    border-radius: 20px;
    font-size: 14px;
    color: var(--text-light);
    border: 1px solid var(--border-gray);
}

/* Who It's For */
.who-its-for {
    background-color: var(--bg-white);
}

.audience-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
    margin-top: 60px;
}

.audience-card {
    text-align: center;
    padding: 40px 24px;
    border-radius: var(--radius-lg);
    background: var(--bg-light);
    transition: all var(--transition);
}

.audience-card:hover {
    background: var(--bg-white);
    box-shadow: var(--shadow-md);
}

.audience-icon {
    margin-bottom: 20px;
}

.audience-card h3 {
    margin-bottom: 12px;
}

/* Why Choose */
.why-choose {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
}

.why-choose h2 {
    color: white;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin-top: 60px;
}

.benefit {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 24px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    backdrop-filter: blur(10px);
}

.benefit svg {
    flex-basis: 2em;
}

.benefit span {
    color: white;
    font-size: 16px;
}

/* FAQ */
.faq {
    background-color: var(--bg-light);
}

.faq-list {
    max-width: 800px;
    margin: 60px auto 0;
}

.faq-item {
    background: var(--bg-white);
    border-radius: var(--radius-md);
    margin-bottom: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 17px;
    font-weight: 600;
    color: var(--text-dark);
    text-align: left;
    transition: all var(--transition);
}

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

.faq-icon {
    flex-shrink: 0;
    transition: transform var(--transition);
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-answer p {
    padding: 0 24px 24px;
}

/* Final CTA */
.final-cta {
    background-color: var(--bg-white);
    text-align: center;
}

.cta-content {
    max-width: 600px;
    margin: 0 auto;
}

.cta-content h2 {
    margin-bottom: 16px;
}

.cta-content > p {
    font-size: 18px;
    margin-bottom: 40px;
}

.cta-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
}

/* Footer */
.footer {
    background-color: var(--bg-light);
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-brand .logo {
    margin-bottom: 16px;
}

.footer-brand p {
    max-width: 300px;
}

.footer-links {
    display: flex;
    gap: 60px;
}

.footer-column h4 {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    color: var(--text-light);
}

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column a {
    color: var(--text-light);
    font-size: 15px;
}

.footer-column a:hover {
    color: var(--primary);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid var(--border-gray);
}

.footer-bottom p {
    font-size: 14px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero {
        min-height: auto;
        padding: 120px 0 60px;
    }

    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

    .hero-content {
        order: 1;
    }

    .hero-visual {
        order: 0;
    }

    .hero-subtitle {
        margin: 0 auto 20px;
    }

    .hero-pricing {
        margin: 0 auto 32px;
    }

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

    .steps {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }

    .steps::before {
        display: none;
    }

    .pricing-cards {
        grid-template-columns: 1fr;
        max-width: 420px;
        margin-left: auto;
        margin-right: auto;
    }

    .pricing-card.featured {
        transform: none;
        order: -1;
    }

    .pricing-card.featured:hover {
        transform: translateY(-8px);
    }
}

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

    .nav-links {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 32px 24px;
        gap: 16px;
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
        transform: translateY(-150%);
        opacity: 0;
        transition: all var(--transition);
    }

    .nav-links.active {
        transform: translateY(0);
        opacity: 1;
    }

    .nav-links a {
        font-size: 17px;
        padding: 8px 0;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .mobile-menu-btn.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .mobile-menu-btn.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-btn.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

    section {
        padding: 60px 0;
    }

    .hero {
        padding: 110px 0 50px;
    }

    .hero-ctas {
        flex-direction: column;
        gap: 12px;
    }

    .hero-ctas .btn {
        width: 100%;
        justify-content: center;
    }

    .steps {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .value-props {
        grid-template-columns: 1fr;
    }

    .value-card {
        padding: 28px 24px;
    }

    .pricing-card.featured {
        transform: none;
    }

    .pricing-card.featured:hover {
        transform: translateY(-4px);
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-links {
        flex-direction: column;
        gap: 32px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }
}

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

    h1 {
        font-size: 32px;
    }

    h2 {
        font-size: 26px;
    }

    .btn {
        padding: 12px 24px;
        font-size: 15px;
    }

    .pricing-cards {
        grid-template-columns: 1fr;
    }

    .value-props {
        grid-template-columns: 1fr;
    }

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

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

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Focus styles for accessibility */
a:focus-visible,
button:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}

/* Print styles */
@media print {
    .navbar,
    .hero-ctas,
    .cta-buttons,
    .mobile-menu-btn {
        display: none;
    }

    body {
        font-size: 12pt;
    }

    section {
        padding: 30px 0;
        page-break-inside: avoid;
    }
}
