/* ===================================
   DeskAgile Website Styles
   Navy (#1B3A57) + Cyan (#00D9FF)
   =================================== */

/* CSS Variables */
:root {
    --navy: #1B3A57;
    --cyan: #00D9FF;
    --white: #FFFFFF;
    --charcoal: #3A3A3A;
    --light-grey: #F5F7FA;
    --border-grey: #E5E7EB;
    
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    
    --transition: all 0.3s ease;
}

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

body {
    font-family: var(--font-primary);
    color: var(--charcoal);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

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

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

ul {
    list-style: none;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ===================================
   NAVIGATION
   =================================== */
.navbar {
    background: var(--white);
    border-bottom: 1px solid var(--border-grey);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-image {
    width: 40px;
    height: 40px;
}

.logo-text {
    font-size: 24px;
    color: var(--navy);
}

.logo-text strong {
    font-weight: 700;
}

.nav-menu {
    display: flex;
    gap: 32px;
}

.nav-link {
    color: var(--charcoal);
    font-weight: 500;
    padding: 8px 0;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--navy);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--cyan);
}

/* ===================================
   BUTTONS
   =================================== */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
    text-align: center;
}

.btn-primary {
    background: var(--cyan);
    color: var(--navy);
}

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

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

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

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

.btn-white:hover {
    background: var(--cyan);
    color: var(--navy);
}

.btn-large {
    padding: 16px 32px;
    font-size: 18px;
}

/* ===================================
   HERO SECTION
   =================================== */
.hero {
    background: linear-gradient(135deg, var(--navy) 0%, #2a5270 100%);
    color: var(--white);
    padding: 80px 0 100px;
    text-align: center;
}

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

.hero-title {
    font-size: 56px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 24px;
}

.highlight {
    color: var(--cyan);
}

.hero-subtitle {
    font-size: 22px;
    margin-bottom: 32px;
    opacity: 0.95;
}

.hero-note {
    margin-top: 16px;
    font-size: 14px;
    opacity: 0.8;
}

/* ===================================
   SECTIONS
   =================================== */
.section {
    padding: 80px 0;
}

.section-light {
    background: var(--light-grey);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 42px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 20px;
    color: var(--charcoal);
    opacity: 0.8;
}

/* ===================================
   GRID LAYOUTS
   =================================== */
.grid {
    display: grid;
    gap: 32px;
}

.grid-3 {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

/* ===================================
   CARDS
   =================================== */
.card {
    background: var(--white);
    padding: 32px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    transition: var(--transition);
}

.card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    transform: translateY(-4px);
}

.card-icon {
    font-size: 48px;
    margin-bottom: 16px;
}

.card-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 12px;
}

.card-text {
    color: var(--charcoal);
    line-height: 1.7;
}

/* ===================================
   FEATURES
   =================================== */
.feature {
    position: relative;
    padding-left: 60px;
}

.feature-number {
    position: absolute;
    left: 0;
    top: 0;
    width: 40px;
    height: 40px;
    background: var(--cyan);
    color: var(--navy);
    font-weight: 700;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.feature-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 12px;
}

.feature-text {
    color: var(--charcoal);
    line-height: 1.7;
}

/* ===================================
   TIMELINE
   =================================== */
.timeline {
    max-width: 900px;
    margin: 0 auto;
}

.timeline-item {
    display: flex;
    gap: 32px;
    margin-bottom: 48px;
    position: relative;
}

.timeline-item:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 20px;
    top: 50px;
    bottom: -48px;
    width: 2px;
    background: var(--border-grey);
}

.timeline-marker {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background: var(--cyan);
    color: var(--navy);
    font-weight: 700;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    z-index: 1;
}

.timeline-content {
    flex: 1;
}

.timeline-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 8px;
}

.timeline-duration {
    color: var(--cyan);
    font-weight: 600;
    margin-bottom: 12px;
}

.timeline-text {
    color: var(--charcoal);
    line-height: 1.7;
    margin-bottom: 12px;
}

.timeline-result {
    background: var(--light-grey);
    padding: 12px 16px;
    border-radius: 6px;
    margin-top: 16px;
}

/* ===================================
   CALLOUT & VALUE PROP
   =================================== */
.callout {
    background: var(--white);
    border-left: 4px solid var(--cyan);
    padding: 24px 32px;
    margin-top: 40px;
    border-radius: 6px;
}

.value-prop {
    text-align: center;
    margin-top: 60px;
}

.value-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--navy);
}

/* ===================================
   IDEAL CLIENT
   =================================== */
.ideal-client {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.ideal-client-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 16px;
    margin-bottom: 24px;
}

.ideal-client-item {
    background: var(--white);
    padding: 20px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.check {
    color: var(--cyan);
    font-weight: 700;
    font-size: 20px;
}

.ideal-client-note {
    font-size: 18px;
    color: var(--charcoal);
    margin-top: 24px;
}

/* ===================================
   CTA SECTION
   =================================== */
.cta-section {
    background: linear-gradient(135deg, var(--navy) 0%, #2a5270 100%);
    color: var(--white);
    padding: 80px 0;
    text-align: center;
}

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

.cta-title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
}

.cta-subtitle {
    font-size: 20px;
    margin-bottom: 32px;
    opacity: 0.95;
}

.cta-note {
    margin-top: 20px;
    font-size: 16px;
    opacity: 0.9;
}

.cta-link {
    color: var(--cyan);
    font-weight: 600;
}

.cta-link:hover {
    text-decoration: underline;
}

/* ===================================
   PAGE HERO
   =================================== */
.page-hero {
    background: var(--light-grey);
    padding: 60px 0;
    text-align: center;
}

.page-title {
    font-size: 48px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 16px;
}

.page-subtitle {
    font-size: 20px;
    color: var(--charcoal);
}

/* ===================================
   SERVICE DETAIL
   =================================== */
.service-detail {
    max-width: 900px;
    margin: 0 auto;
}

.service-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 32px;
    padding-bottom: 32px;
    border-bottom: 2px solid var(--border-grey);
}

.service-title {
    font-size: 36px;
    font-weight: 700;
    color: var(--navy);
}

.service-price {
    text-align: right;
}

.price-amount {
    font-size: 42px;
    font-weight: 700;
    color: var(--cyan);
    display: block;
}

.price-duration {
    color: var(--charcoal);
    font-size: 16px;
}

.service-intro {
    font-size: 20px;
    margin-bottom: 32px;
    color: var(--charcoal);
}

.service-heading {
    font-size: 24px;
    font-weight: 700;
    color: var(--navy);
    margin: 32px 0 16px;
}

.service-list {
    margin-bottom: 24px;
}

.service-list li {
    padding: 12px 0;
    padding-left: 32px;
    position: relative;
}

.service-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--cyan);
    font-weight: 700;
}

.service-outcome {
    background: var(--light-grey);
    padding: 20px 24px;
    border-radius: 8px;
    margin: 32px 0;
}

.service-note {
    color: var(--charcoal);
    font-style: italic;
    margin-bottom: 32px;
}

/* Pilot Options */
.pilot-options {
    margin: 32px 0;
}

.pilot-option {
    background: var(--white);
    border: 2px solid var(--border-grey);
    border-radius: 8px;
    padding: 24px;
    margin-bottom: 20px;
}

.pilot-option h4 {
    color: var(--navy);
    font-size: 20px;
    margin-bottom: 12px;
}

.pilot-savings {
    margin-top: 12px;
    color: var(--cyan);
    font-weight: 600;
}

.conversion-stat {
    text-align: center;
    margin: 40px 0;
    padding: 32px;
    background: var(--light-grey);
    border-radius: 12px;
}

.stat-number {
    font-size: 64px;
    font-weight: 700;
    color: var(--cyan);
    line-height: 1;
}

.stat-label {
    font-size: 18px;
    color: var(--charcoal);
    margin-top: 8px;
}

/* ===================================
   PRICING CARDS
   =================================== */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
    margin-bottom: 60px;
}

.pricing-card {
    background: var(--white);
    border: 2px solid var(--border-grey);
    border-radius: 12px;
    padding: 40px 32px;
    position: relative;
    transition: var(--transition);
}

.pricing-card:hover {
    border-color: var(--cyan);
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
}

.pricing-card-featured {
    border-color: var(--cyan);
    border-width: 3px;
}

.pricing-badge {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--cyan);
    color: var(--navy);
    padding: 6px 20px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 14px;
}

.pricing-header {
    text-align: center;
    margin-bottom: 32px;
    padding-bottom: 24px;
    border-bottom: 2px solid var(--border-grey);
}

.pricing-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 16px;
}

.pricing-price {
    margin: 20px 0;
}

.price-currency {
    font-size: 24px;
    vertical-align: super;
}

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

.price-plus {
    font-size: 32px;
    color: var(--charcoal);
}

.pricing-subtitle {
    color: var(--charcoal);
    font-size: 16px;
}

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

.pricing-features li {
    padding: 12px 0;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.pricing-delivery,
.pricing-savings {
    font-size: 14px;
    color: var(--charcoal);
    margin-bottom: 24px;
    text-align: center;
}

.payment-terms {
    max-width: 700px;
    margin: 60px auto 0;
    text-align: center;
    padding: 32px;
    background: var(--light-grey);
    border-radius: 8px;
}

.payment-terms h3 {
    color: var(--navy);
    margin-bottom: 16px;
}

/* ===================================
   RETAINER CARDS
   =================================== */
.retainer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    margin-bottom: 60px;
}

.retainer-card {
    background: var(--white);
    border: 2px solid var(--border-grey);
    border-radius: 12px;
    padding: 40px 32px;
    position: relative;
    transition: var(--transition);
}

.retainer-card:hover {
    border-color: var(--cyan);
    transform: translateY(-4px);
}

.retainer-card-recommended {
    border-color: var(--cyan);
    border-width: 3px;
}

.retainer-badge {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--cyan);
    color: var(--navy);
    padding: 6px 20px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 14px;
}

.retainer-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 16px;
}

.retainer-price {
    font-size: 42px;
    font-weight: 700;
    color: var(--cyan);
    margin-bottom: 24px;
}

.retainer-price span {
    font-size: 20px;
    color: var(--charcoal);
}

.retainer-features {
    margin-bottom: 24px;
}

.retainer-features li {
    padding: 8px 0;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.retainer-best-for {
    font-size: 14px;
    color: var(--charcoal);
    margin-bottom: 24px;
    font-style: italic;
}

.retainer-note {
    max-width: 800px;
    margin: 60px auto 0;
    text-align: center;
    padding: 32px;
    background: var(--light-grey);
    border-radius: 8px;
}

/* ===================================
   CONTACT PAGE
   =================================== */
.contact-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
}

.contact-heading {
    font-size: 32px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 24px;
}

.contact-intro {
    margin-bottom: 20px;
    color: var(--charcoal);
}

.contact-list {
    margin-bottom: 32px;
}

.contact-list li {
    padding: 8px 0;
    padding-left: 24px;
    position: relative;
}

.contact-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--cyan);
    font-weight: 700;
}

.calendly-embed {
    margin-top: 32px;
    border-radius: 8px;
    overflow: hidden;
}

.contact-method {
    display: flex;
    gap: 20px;
    margin-bottom: 32px;
    padding-bottom: 32px;
    border-bottom: 1px solid var(--border-grey);
}

.contact-icon {
    font-size: 32px;
}

.contact-method-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 8px;
}

.contact-method-text {
    margin-bottom: 8px;
}

.contact-method-note {
    font-size: 14px;
    color: var(--charcoal);
    opacity: 0.8;
}

.contact-link {
    color: var(--cyan);
    font-weight: 600;
}

.contact-link:hover {
    text-decoration: underline;
}

.contact-cta {
    background: var(--light-grey);
    padding: 32px;
    border-radius: 8px;
    margin-top: 40px;
}

.contact-cta-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 20px;
}

.contact-expectations li {
    padding: 12px 0;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

/* ===================================
   FAQ
   =================================== */
.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 32px;
}

.faq-item {
    background: var(--white);
    padding: 32px;
    border-radius: 8px;
}

.faq-question {
    font-size: 20px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 16px;
}

.faq-answer {
    color: var(--charcoal);
    line-height: 1.7;
}

/* ===================================
   FOOTER
   =================================== */
.footer {
    background: var(--navy);
    color: var(--white);
    padding: 60px 0 24px;
}

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

.footer-tagline {
    margin-top: 16px;
    opacity: 0.8;
}

.footer-heading {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 16px;
}

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

.footer-link {
    opacity: 0.8;
    transition: var(--transition);
}

.footer-link:hover {
    opacity: 1;
    color: var(--cyan);
}

.footer-text {
    margin-bottom: 12px;
    opacity: 0.8;
}

.footer-bottom {
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
    opacity: 0.6;
    font-size: 14px;
}

/* ===================================
   RESPONSIVE DESIGN
   =================================== */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .grid-3 {
        grid-template-columns: 1fr;
    }
    
    .timeline-item {
        flex-direction: column;
        gap: 16px;
    }
    
    .timeline-item::after {
        left: 20px;
        top: 60px;
    }
    
    .service-header {
        flex-direction: column;
    }
    
    .service-price {
        text-align: left;
        margin-top: 16px;
    }
    
    .pricing-grid,
    .retainer-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .page-title {
        font-size: 32px;
    }
    
    .cta-title {
        font-size: 32px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    .hero {
        padding: 60px 0 80px;
    }
    
    .hero-title {
        font-size: 28px;
    }
    
    .section {
        padding: 60px 0;
    }
    
    .btn-large {
        padding: 14px 24px;
        font-size: 16px;
    }
}
