/* ===================================
   Staff Breeze - CSS Stylesheet
   Brand Colors:
   - Lavender Purple: #8B7DC8
   - Coral/Salmon: #FF7E67
   - Light Lavender: #F8F6FF
   - White: #FFFFFF
   - Dark Grey: #333333
   - Medium Grey: #666666
   =================================== */

/* ===================================
   GLOBAL STYLES
   =================================== */

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    color: #333333;
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===================================
   TYPOGRAPHY
   =================================== */

h1, h2, h3 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    color: #8B7DC8;
    line-height: 1.2;
}

h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

p {
    color: #333333;
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
}

.section-intro {
    text-align: center;
    font-size: 1.2rem;
    color: #666666;
    max-width: 800px;
    margin: 0 auto 3rem;
}

/* ===================================
   BUTTONS
   =================================== */

.btn {
    display: inline-block;
    padding: 18px 36px;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
}

.btn-primary {
    background-color: #FF7E67;
    color: #FFFFFF;
    box-shadow: 0 4px 15px rgba(255, 126, 103, 0.3);
}

.btn-primary:hover {
    background-color: #ff6a50;
    box-shadow: 0 6px 20px rgba(255, 126, 103, 0.4);
    transform: translateY(-2px);
}

.btn-primary i {
    margin-right: 8px;
    font-size: 1.2rem;
}

.btn-secondary {
    color: #8B7DC8;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    color: #7366b8;
}

.btn-cta-large {
    background-color: #FF7E67;
    color: #FFFFFF;
    padding: 22px 48px;
    font-size: 1.2rem;
    box-shadow: 0 6px 25px rgba(255, 126, 103, 0.4);
}

.btn-cta-large:hover {
    background-color: #ff6a50;
    box-shadow: 0 8px 30px rgba(255, 126, 103, 0.5);
    transform: translateY(-2px);
}

.btn-cta-large i {
    margin-right: 10px;
    font-size: 1.4rem;
}

/* ===================================
   NAVIGATION
   =================================== */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    padding: 8px 0;
    min-height: 60px;
}

/* iOS Safari safe area support */
@supports (-webkit-touch-callout: none) {
    .navbar {
        padding-top: calc(8px + env(safe-area-inset-top));
    }
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    min-height: 48px;
}

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

.logo img {
    height: 50px;
    width: auto;
}

.logo span {
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #8B7DC8;
}

.nav-cta-btn {
    background-color: #FF7E67;
    color: #FFFFFF;
    border: none;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
    white-space: nowrap;
    flex-shrink: 0;
}

.nav-cta-btn:hover {
    background-color: #ff6a50;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 126, 103, 0.3);
}

.nav-cta-btn i {
    margin-right: 6px;
}

/* ===================================
   HERO SECTION
   =================================== */

.hero-section {
    background: linear-gradient(135deg, #F8F6FF 0%, #e8e4ff 100%);
    padding: 90px 0 50px;
    text-align: center;
}

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

.hero-title {
    font-size: 3.5rem;
    color: #8B7DC8;
    margin-bottom: 1rem;
    animation: fadeInUp 0.8s ease;
}

.hero-tagline {
    font-size: 1.8rem;
    color: #8B7DC8;
    font-weight: 600;
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.8s ease 0.2s both;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: #666666;
    margin-bottom: 2.5rem;
    animation: fadeInUp 0.8s ease 0.4s both;
}

.hero-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
    animation: fadeInUp 0.8s ease 0.6s both;
}

.trust-badge {
    color: #666666;
    font-size: 1rem;
    font-weight: 500;
    animation: fadeInUp 0.8s ease 0.8s both;
}

.trust-badge i {
    color: #8B7DC8;
    margin-right: 8px;
}

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

/* ===================================
   PROBLEM SECTION
   =================================== */

.problem-section {
    background-color: #FFFFFF;
    padding: 100px 0;
}

.problem-content {
    max-width: 900px;
    margin: 0 auto;
}

.problem-content p {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #333333;
}

.transition-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: #FF7E67;
    text-align: center;
    margin-top: 2rem;
    padding: 20px;
    background: linear-gradient(135deg, rgba(255, 126, 103, 0.1) 0%, rgba(139, 125, 200, 0.1) 100%);
    border-radius: 15px;
}

/* ===================================
   HOW IT WORKS SECTION
   =================================== */

.how-it-works-section {
    background: linear-gradient(135deg, #F8F6FF 0%, #e8e4ff 100%);
    padding: 100px 0;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 3rem;
}

.step-card {
    background-color: #FFFFFF;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
}

.step-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(139, 125, 200, 0.2);
}

.step-number {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: #FF7E67;
    color: #FFFFFF;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
}

.step-icon {
    font-size: 4rem;
    color: #8B7DC8;
    margin-bottom: 1.5rem;
}

.step-title {
    color: #8B7DC8;
    margin-bottom: 1rem;
}

.step-description {
    color: #666666;
    font-size: 1rem;
}

.micro-cta {
    text-align: center;
}

.cta-link {
    color: #FF7E67;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-link:hover {
    color: #ff6a50;
}

/* ===================================
   SERVICES SECTION
   =================================== */

.services-section {
    background-color: #FFFFFF;
    padding: 100px 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 3rem;
}

.service-card {
    background-color: #F8F6FF;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.service-card:hover {
    border-color: #8B7DC8;
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(139, 125, 200, 0.15);
}

.service-icon {
    font-size: 3.5rem;
    color: #8B7DC8;
    margin-bottom: 1.5rem;
}

.service-title {
    color: #8B7DC8;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.service-description {
    color: #666666;
    font-size: 1rem;
}

.services-tagline {
    text-align: center;
    font-size: 1.8rem;
    font-weight: 700;
    color: #8B7DC8;
    margin-top: 2rem;
}

/* ===================================
   WHY STAFF BREEZE SECTION
   =================================== */

.why-section {
    background: linear-gradient(135deg, #F8F6FF 0%, #e8e4ff 100%);
    padding: 100px 0;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-bottom: 3rem;
}

.why-card {
    background-color: #FFFFFF;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.why-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(139, 125, 200, 0.2);
}

.why-icon {
    font-size: 3rem;
    color: #FF7E67;
    margin-bottom: 1.5rem;
}

.why-title {
    color: #8B7DC8;
    margin-bottom: 1rem;
}

.why-description {
    color: #666666;
    font-size: 1rem;
    line-height: 1.7;
}

.trust-footer {
    text-align: center;
    color: #666666;
    font-size: 1.1rem;
    font-weight: 600;
}

.trust-footer i {
    color: #FF7E67;
    margin-right: 8px;
}

/* ===================================
   PRICING SECTION
   =================================== */

.pricing-section {
    background-color: #FFFFFF;
    padding: 100px 0;
}

.pricing-intro {
    max-width: 800px;
    margin: 0 auto 3rem;
    text-align: center;
}

.pricing-intro p {
    font-size: 1.1rem;
    color: #666666;
    margin-bottom: 1rem;
}

.pricing-note {
    font-weight: 600;
    color: #8B7DC8;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 3rem;
}

.pricing-card {
    background: linear-gradient(135deg, #F8F6FF 0%, #e8e4ff 100%);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    border: 3px solid transparent;
    position: relative;
}

.pricing-card:hover {
    border-color: #8B7DC8;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(139, 125, 200, 0.2);
}

.pricing-card-popular {
    border-color: #FF7E67;
    background: linear-gradient(135deg, #FFFFFF 0%, #F8F6FF 100%);
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #FF7E67;
    color: #FFFFFF;
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
}

.pricing-icon {
    font-size: 3.5rem;
    color: #8B7DC8;
    margin-bottom: 1.5rem;
}

.pricing-title {
    color: #8B7DC8;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.pricing-description {
    color: #666666;
    font-size: 1rem;
}

.pricing-cta {
    text-align: center;
}

/* ===================================
   FINAL CTA SECTION
   =================================== */

.final-cta-section {
    background: linear-gradient(135deg, #8B7DC8 0%, #7366b8 100%);
    padding: 100px 0;
    text-align: center;
}

.final-cta-title {
    color: #FFFFFF;
    font-size: 3rem;
    margin-bottom: 1rem;
}

.final-cta-subtitle {
    color: #FFFFFF;
    font-size: 1.5rem;
    margin-bottom: 2.5rem;
}

/* ===================================
   WAITLIST SECTION
   =================================== */

.waitlist-section {
    background-color: #F8F6FF;
    padding: 80px 0;
    text-align: center;
}

.waitlist-title {
    color: #8B7DC8;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.waitlist-description {
    color: #666666;
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto 2.5rem;
}

.waitlist-form {
    display: flex;
    justify-content: center;
    gap: 15px;
    max-width: 600px;
    margin: 0 auto 1rem;
}

.waitlist-form input[type="email"] {
    flex: 1;
    padding: 18px 24px;
    border: 2px solid #8B7DC8;
    border-radius: 50px;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    outline: none;
    transition: all 0.3s ease;
}

.waitlist-form input[type="email"]:focus {
    border-color: #FF7E67;
    box-shadow: 0 0 0 3px rgba(255, 126, 103, 0.1);
}

.waitlist-form button {
    padding: 18px 36px;
}

.privacy-note {
    color: #666666;
    font-size: 0.9rem;
    font-style: italic;
}

.form-message {
    margin-top: 1.5rem;
    font-size: 1rem;
    font-weight: 600;
}

.form-message.success {
    color: #28a745;
}

.form-message.error {
    color: #dc3545;
}

/* ===================================
   FOOTER
   =================================== */

.footer {
    background-color: #333333;
    color: #FFFFFF;
    padding: 60px 0 30px;
}

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

.footer-logo {
    height: 60px;
    width: auto;
    margin-bottom: 15px;
}

.footer-brand h4 {
    color: #FFFFFF;
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.footer-company {
    color: #999999;
    font-size: 0.9rem;
    margin-bottom: 5px;
}

.footer-location {
    color: #999999;
    font-size: 0.9rem;
}

.footer-contact h4,
.footer-social h4 {
    color: #FFFFFF;
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.footer-contact p {
    margin-bottom: 10px;
    font-size: 1rem;
}

.footer-contact a {
    color: #FF7E67;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-contact a:hover {
    color: #ff6a50;
}

.footer-contact i {
    margin-right: 8px;
    color: #8B7DC8;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background-color: #8B7DC8;
    color: #FFFFFF;
    border-radius: 50%;
    text-decoration: none;
    font-size: 1.3rem;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background-color: #FF7E67;
    transform: translateY(-3px);
}

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

.footer-legal {
    display: flex;
    gap: 15px;
    align-items: center;
}

.footer-legal a {
    color: #999999;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.footer-legal a:hover {
    color: #FFFFFF;
}

.footer-legal span {
    color: #666666;
}

.footer-copyright {
    color: #999999;
    font-size: 0.9rem;
}

/* ===================================
   RESPONSIVE DESIGN
   =================================== */

/* Laptop/Desktop - 1025px and up */
@media (min-width: 1025px) {
    .navbar {
        padding: 12px 0;
        min-height: 70px;
    }
    
    .logo img {
        height: 48px;
    }
    
    .logo span {
        font-size: 1.5rem;
    }
    
    .nav-cta-btn {
        padding: 12px 24px;
        font-size: 1rem;
    }
    
    .hero-section {
        padding: 120px 0 70px;
    }
}

/* Tablet - 641px to 1024px */
@media (min-width: 641px) and (max-width: 1024px) {
    .navbar {
        padding: 10px 0;
        min-height: 64px;
    }
    
    .logo img {
        height: 44px;
    }
    
    .logo span {
        font-size: 1.3rem;
    }
    
    .nav-cta-btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .hero-section {
        padding: 100px 0 60px;
    }
}

/* Mobile - 640px and below */
@media (max-width: 640px) {
    .navbar {
        padding: 6px 0;
        min-height: 56px;
    }
    
    /* iOS Safari safe area for mobile */
    @supports (-webkit-touch-callout: none) {
        .navbar {
            padding-top: calc(6px + env(safe-area-inset-top));
            min-height: calc(56px + env(safe-area-inset-top));
        }
    }
    
    .logo img {
        height: 38px;
    }
    
    .logo span {
        display: none;
    }
    
    .nav-cta-btn {
        padding: 8px 14px;
        font-size: 0.8rem;
    }
    
    .nav-cta-btn i {
        display: none;
    }
    
    .hero-section {
        padding: 80px 0 40px;
    }
    
    /* iOS Safari safe area for hero */
    @supports (-webkit-touch-callout: none) {
        .hero-section {
            padding-top: calc(80px + env(safe-area-inset-top));
        }
    }
}

@media (max-width: 968px) {
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .hero-title {
        font-size: 2.8rem;
    }
    
    .hero-tagline {
        font-size: 1.5rem;
    }
    
    .services-grid,
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .steps-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
    
    .why-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .social-icons {
        justify-content: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
    }
}

@media (max-width: 640px) {
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-tagline {
        font-size: 1.3rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .services-grid,
    .pricing-grid,
    .why-grid {
        grid-template-columns: 1fr;
    }
    
    .steps-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }
    
    .step-card {
        padding: 25px 15px;
    }
    
    .step-icon {
        font-size: 2.5rem;
    }
    
    .step-title {
        font-size: 1.1rem;
    }
    
    .step-description {
        font-size: 0.85rem;
    }
    
    .waitlist-form {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
        text-align: center;
    }
    
    .final-cta-title {
        font-size: 2rem;
    }
    
    .final-cta-subtitle {
        font-size: 1.2rem;
    }
    
    section {
        padding: 60px 0 !important;
    }
}

/* ===================================
   UTILITY CLASSES
   =================================== */

.text-center {
    text-align: center;
}

.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }
