/* =====================
   APPLE-INSPIRED CAREERS PAGE DESIGN
   ===================== */

/* Hero Section */
.apple-hero {
    background: #f5f5f7;
    padding: 140px 0 100px 0;
    margin-top: 44px;
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: 60vh;
    display: flex;
    align-items: center;
}

.apple-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 122, 255, 0.03) 0%, rgba(175, 82, 222, 0.02) 100%);
    animation: heroGradient 8s ease-in-out infinite alternate;
}

@keyframes heroGradient {
    0% { opacity: 0.7; }
    100% { opacity: 1; }
}

.apple-hero__content {
    max-width: 980px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.apple-hero__title {
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 600;
    line-height: 1.05;
    letter-spacing: -0.003em;
    color: #1d1d1f;
    margin-bottom: 32px;
    animation: fadeInUp 1s ease-out;
}

.apple-hero__subtitle {
    font-size: clamp(1.125rem, 3vw, 1.5rem);
    line-height: 1.4;
    font-weight: 400;
    color: #6e6e73;
    max-width: 700px;
    margin: 0 auto;
    animation: fadeInUp 1s ease-out 0.2s both;
}

/* Main Section System */
.apple-section {
    padding: 100px 0;
    background: #ffffff;
    position: relative;
}

.apple-section:nth-child(even) {
    background: #f5f5f7;
}

.apple-section__content {
    text-align: center;
    max-width: 980px;
    margin: 0 auto 80px auto;
}

.apple-section__title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 600;
    line-height: 1.1;
    letter-spacing: -0.003em;
    color: #1d1d1f;
    margin-bottom: 16px;
}

.apple-section__subtitle {
    font-size: clamp(1.25rem, 3.5vw, 2rem);
    font-weight: 600;
    line-height: 1.2;
    color: #1d1d1f;
    margin-bottom: 24px;
}

.apple-section__description {
    font-size: clamp(1.0625rem, 2.5vw, 1.25rem);
    line-height: 1.47;
    font-weight: 400;
    color: #6e6e73;
    max-width: 700px;
    margin: 0 auto;
}

/* Values Grid */
.apple-values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-top: 80px;
}

.apple-value-card {
    text-align: center;
    padding: 48px 32px;
    background: white;
    border-radius: 24px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: 1px solid rgba(0, 0, 0, 0.04);
    position: relative;
    overflow: hidden;
}

.apple-value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #007aff 0%, #af52de 100%);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.apple-value-card:hover::before {
    transform: scaleX(1);
}

.apple-value-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.apple-value-icon {
    width: 72px;
    height: 72px;
    border-radius: 24px;
    background: linear-gradient(135deg, #007aff 0%, #af52de 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    color: white;
    font-size: 1.75rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.apple-value-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.apple-value-card:hover .apple-value-icon::before {
    left: 100%;
}

.apple-value-card:hover .apple-value-icon {
    transform: scale(1.1) rotate(5deg);
}

.apple-value-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1d1d1f;
    margin-bottom: 16px;
    line-height: 1.2;
}

.apple-value-card p {
    font-size: 1.0625rem;
    line-height: 1.47;
    color: #6e6e73;
    margin: 0;
}

/* Positions Grid */
.apple-positions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
    margin-top: 80px;
}

.apple-position-card {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: 1px solid rgba(0, 0, 0, 0.04);
    position: relative;
}

.apple-position-card:hover {
    transform: translateY(-16px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.apple-position-image {
    height: 200px;
    background: linear-gradient(135deg, #f5f5f7 0%, #e8e8ed 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.placeholder-image {
    width: 80px;
    height: 80px;
    border-radius: 24px;
    background: linear-gradient(135deg, #007aff 0%, #af52de 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    transition: all 0.3s ease;
    position: relative;
}

.apple-position-card:hover .placeholder-image {
    transform: scale(1.1) rotate(5deg);
}

.apple-position-content {
    padding: 32px;
}

.apple-position-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1d1d1f;
    line-height: 1.2;
    margin-bottom: 8px;
}

.apple-position-meta {
    font-size: 0.9375rem;
    color: #007aff;
    margin-bottom: 16px;
    font-weight: 500;
}

.apple-position-desc {
    font-size: 1.0625rem;
    line-height: 1.47;
    color: #6e6e73;
    margin-bottom: 24px;
}

.apple-position-link {
    color: #007aff;
    font-size: 1.0625rem;
    font-weight: 500;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.2s ease;
    position: relative;
}

.apple-position-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: #007aff;
    transition: width 0.3s ease;
}

.apple-position-link:hover::after {
    width: 100%;
}

.apple-position-link:hover {
    color: #0056d3;
    transform: translateX(4px);
}

.apple-position-link i {
    font-size: 0.875rem;
    transition: transform 0.2s ease;
}

.apple-position-link:hover i {
    transform: translateX(4px);
}

/* CTA Section */
.apple-section--cta {
    background: linear-gradient(135deg, #1d1d1f 0%, #2d2d2f 100%);
    color: white;
}

.apple-cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #007aff;
    color: white;
    padding: 18px 36px;
    border-radius: 50px;
    font-size: 1.125rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 4px 20px rgba(0, 122, 255, 0.3);
    position: relative;
    overflow: hidden;
    gap: 10px;
    margin-top: 32px;
}

.apple-cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.apple-cta-button:hover::before {
    left: 100%;
}

.apple-cta-button:hover {
    background: #0056d3;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 40px rgba(0, 122, 255, 0.4);
}

.apple-section--cta .apple-section__title {
    color: white;
    margin-bottom: 24px;
}

.apple-section--cta .apple-section__description {
    color: #a1a1a6;
    margin-bottom: 16px;
}

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

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

/* AOS Animations */
[data-aos="fade-up"] {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-out;
}

[data-aos="fade-up"].aos-animate {
    opacity: 1;
    transform: translateY(0);
}

[data-aos="fade-left"] {
    opacity: 0;
    transform: translateX(30px);
    transition: all 0.6s ease-out;
}

[data-aos="fade-left"].aos-animate {
    opacity: 1;
    transform: translateX(0);
}

[data-aos="fade-right"] {
    opacity: 0;
    transform: translateX(-30px);
    transition: all 0.6s ease-out;
}

[data-aos="fade-right"].aos-animate {
    opacity: 1;
    transform: translateX(0);
}

[data-aos="zoom-in"] {
    opacity: 0;
    transform: scale(0.9);
    transition: all 0.6s ease-out;
}

[data-aos="zoom-in"].aos-animate {
    opacity: 1;
    transform: scale(1);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .apple-section {
        padding: 80px 0;
    }
    
    .apple-section__content {
        margin-bottom: 60px;
    }
    
    .apple-values-grid {
        grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
        gap: 32px;
        margin-top: 60px;
    }
    
    .apple-positions-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 24px;
        margin-top: 60px;
    }
    
    .apple-hero {
        padding: 120px 0 80px 0;
        min-height: 50vh;
    }
}

@media (max-width: 768px) {
    .apple-hero {
        padding: 100px 0 60px 0;
        min-height: 40vh;
    }
    
    .apple-section {
        padding: 60px 0;
    }
    
    .apple-section__content {
        margin-bottom: 50px;
    }
    
    .apple-values-grid {
        grid-template-columns: 1fr;
        gap: 24px;
        margin-top: 50px;
    }
    
    .apple-value-card {
        padding: 36px 24px;
    }
    
    .apple-positions-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 50px;
    }
    
    .apple-position-content {
        padding: 24px;
    }
}

@media (max-width: 480px) {
    .apple-hero {
        padding: 80px 0 50px 0;
    }
    
    .apple-section {
        padding: 50px 0;
    }
    
    .container {
        padding: 0 16px;
    }
    
    .apple-value-icon {
        width: 64px;
        height: 64px;
        font-size: 1.5rem;
    }
    
    .apple-value-card {
        padding: 32px 20px;
    }
    
    .apple-position-content {
        padding: 20px;
    }
    
    .placeholder-image {
        width: 72px;
        height: 72px;
        font-size: 1.75rem;
    }
}

/* ===========================
   END OF CAREERS PAGE STYLES
   =========================== */

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--apple-font-family);
    line-height: 1.6;
    color: #333;
    background-color: #ffffff;
    overflow-x: hidden;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1rem;
    color: #666;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

/* Gradient Text */
.gradient-text {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Enhanced Button System */
.btn {
    display: inline-flex;
    align-items: center;
    gap: var(--apple-spacing-xs);
    padding: var(--apple-spacing-sm) var(--apple-spacing-lg);
    border-radius: var(--apple-radius);
    font-weight: 500;
    font-size: 1rem;
    text-decoration: none;
    transition: var(--apple-transition);
    cursor: pointer;
    border: none;
    position: relative;
    overflow: hidden;
    min-height: 48px;
    justify-content: center;
}

.btn-primary {
    background: var(--apple-gradient);
    color: white;
    box-shadow: var(--apple-shadow);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--apple-shadow-large);
}

.btn-outline {
    background: rgba(0, 122, 255, 0.1);
    color: var(--apple-blue);
    border: 1px solid rgba(0, 122, 255, 0.2);
}

.btn-outline:hover {
    background: rgba(0, 122, 255, 0.2);
    transform: translateY(-1px);
}

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

/* Navigation - Apple Style */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: var(--apple-blur);
    -webkit-backdrop-filter: var(--apple-blur);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    transition: var(--apple-transition);
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 max(env(safe-area-inset-left), 16px) 0 max(env(safe-area-inset-right), 16px);
    height: 44px;
    max-width: 1024px;
    margin: 0 auto;
}

.nav-brand .logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-img {
    height: 32px;
    width: auto;
    object-fit: contain;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 0;
    margin: 0;
    padding: 0;
}

.nav-item {
    margin: 0;
}

.nav-link {
    color: var(--apple-black);
    font-weight: 400;
    font-size: 12px;
    position: relative;
    transition: var(--apple-transition);
    text-decoration: none;
    padding: 0 8px;
    height: 44px;
    display: flex;
    align-items: center;
    white-space: nowrap;
}

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

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--apple-gradient);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

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

/* Mobile Navigation */
.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
    padding: 10px;
    background: none;
    border: none;
    z-index: 1001;
}

.nav-toggle.active .bar:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active .bar:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active .bar:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

.nav-menu {
    display: flex;
}

.nav-menu.mobile-active {
    transform: translateX(0);
}

.bar {
    width: 25px;
    height: 3px;
    background: #333;
    transition: all 0.3s ease;
}

/* Hero Section - Apple-like Design */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--apple-white) 0%, #e8ebf0 100%);
    position: relative;
    overflow: hidden;
    padding-top: 80px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><radialGradient id="a" cx="50%" cy="50%"><stop offset="0%" stop-color="%23007aff" stop-opacity="0.05"/><stop offset="100%" stop-color="%23007aff" stop-opacity="0"/></radialGradient></defs><circle cx="200" cy="300" r="150" fill="url(%23a)"/><circle cx="800" cy="200" r="200" fill="url(%23a)"/><circle cx="600" cy="700" r="180" fill="url(%23a)"/></svg>') no-repeat center center;
    background-size: cover;
    opacity: 0.7;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--apple-spacing-md);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--apple-spacing-xxl);
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: clamp(3rem, 6vw, 4.5rem);
    font-weight: 700;
    margin-bottom: var(--apple-spacing-lg);
    color: var(--apple-black);
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.hero-description {
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    margin-bottom: var(--apple-spacing-xl);
    color: var(--apple-gray);
    line-height: 1.6;
    max-width: 600px;
}

.hero-buttons {
    display: flex;
    gap: var(--apple-spacing-md);
    flex-wrap: wrap;
}

.hero-visual {
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.floating-card {
    position: absolute;
    background: white;
    padding: var(--apple-spacing-lg);
    border-radius: var(--apple-radius);
    box-shadow: var(--apple-shadow);
    display: flex;
    align-items: center;
    gap: var(--apple-spacing-sm);
    font-weight: 600;
    color: var(--apple-black);
    animation: float 6s ease-in-out infinite;
    backdrop-filter: var(--apple-blur);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.floating-card i {
    font-size: 1.5rem;
    color: var(--apple-blue);
}

.card-1 {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.card-2 {
    top: 50%;
    right: 10%;
    animation-delay: 2s;
}

.card-3 {
    bottom: 20%;
    left: 20%;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) scale(1); }
    50% { transform: translateY(-20px) scale(1.05); }
}

/* Section Headers - Compact Apple Style */
.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 2.5rem;
}

.section-title {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 700;
    color: var(--apple-black);
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
    line-height: 1.1;
}

.section-subtitle {
    font-size: clamp(0.95rem, 2vw, 1.1rem);
    color: var(--apple-gray);
    line-height: 1.5;
    max-width: 600px;
    margin: 0 auto;
}

/* Section Styles - Reduced Padding */
section {
    padding: 3rem 0;
}

/* Offerings Banner Section */
.offerings-banner {
    background: linear-gradient(135deg, #0a0e1a 0%, #1a1f3a 25%, #2d1b69 50%, #667eea 75%, #764ba2 100%);
    color: white;
    position: relative;
    overflow: hidden;
    padding: 8rem 0;
    min-height: auto;
    display: block;
}

.offerings-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 15% 25%, rgba(102, 126, 234, 0.3) 0%, transparent 40%),
        radial-gradient(circle at 85% 15%, rgba(118, 75, 162, 0.25) 0%, transparent 45%),
        radial-gradient(circle at 50% 85%, rgba(59, 130, 246, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 25% 75%, rgba(147, 51, 234, 0.15) 0%, transparent 35%);
    animation: gradientShift 12s ease-in-out infinite;
}

@keyframes gradientShift {
    0%, 100% { opacity: 0.8; }
    25% { opacity: 0.9; }
    50% { opacity: 0.7; }
    75% { opacity: 0.85; }
}

.offerings-banner::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(45deg, transparent 48%, rgba(255, 255, 255, 0.03) 49%, rgba(255, 255, 255, 0.03) 51%, transparent 52%),
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="hexagons" width="50" height="43.4" patternUnits="userSpaceOnUse"><polygon points="25,0 50,14.43 50,28.87 25,43.3 0,28.87 0,14.43" fill="none" stroke="rgba(255,255,255,0.08)" stroke-width="0.5"/></pattern></defs><rect width="100%" height="100%" fill="url(%23hexagons)"/></svg>') repeat;
    opacity: 0.6;
    animation: patternFloat 20s linear infinite;
}

@keyframes patternFloat {
    0% { transform: translateX(0) translateY(0); }
    25% { transform: translateX(-10px) translateY(-5px); }
    50% { transform: translateX(-5px) translateY(-10px); }
    75% { transform: translateX(-15px) translateY(-3px); }
    100% { transform: translateX(0) translateY(0); }
}

.offerings-content {
    position: relative;
    z-index: 1;
}

.offerings-title {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 1.5rem;
    color: white;
    font-weight: 700;
    background: linear-gradient(135deg, #ffffff 0%, rgba(102, 126, 234, 0.9) 50%, rgba(118, 75, 162, 0.9) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.offerings-subtitle {
    font-size: 1.3rem;
    text-align: center;
    margin-bottom: 5rem;
    color: rgba(255, 255, 255, 0.85);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    font-weight: 400;
}

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

.offering-item {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    padding: 2.5rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.offering-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(102, 126, 234, 0.15), rgba(118, 75, 162, 0.15), transparent);
    transition: left 0.6s ease;
}

.offering-item:hover::before {
    left: 100%;
}

.offering-item:hover {
    transform: translateY(-10px) scale(1.02);
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(102, 126, 234, 0.3);
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.2),
        0 0 0 1px rgba(102, 126, 234, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.offering-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.3), rgba(118, 75, 162, 0.3));
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    color: white;
    margin-bottom: 2rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 4px 20px rgba(102, 126, 234, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.offering-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.offering-item:hover .offering-icon {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.5), rgba(118, 75, 162, 0.5));
    transform: scale(1.1) rotate(5deg);
    box-shadow: 
        0 8px 30px rgba(102, 126, 234, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.offering-item:hover .offering-icon::before {
    opacity: 1;
}

.offering-content h3 {
    font-size: 1.6rem;
    color: white;
    margin-bottom: 1rem;
    font-weight: 600;
    position: relative;
}

.offering-content p {
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 2rem;
    line-height: 1.7;
    font-size: 1rem;
}

.offering-link {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    padding: 8px 12px;
    border-radius: 8px;
    background: rgba(102, 126, 234, 0.1);
    border: 1px solid rgba(102, 126, 234, 0.2);
}

.offering-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.2), rgba(118, 75, 162, 0.2));
    border-radius: 8px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.offering-link:hover {
    color: white;
    transform: translateX(5px);
    background: rgba(102, 126, 234, 0.2);
    border-color: rgba(102, 126, 234, 0.4);
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.offering-link:hover::before {
    opacity: 1;
}

.offering-link i {
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
}

.offering-link:hover i {
    transform: translateX(3px);
}

.offerings-cta {
    text-align: center;
    padding-top: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    margin-top: 2rem;
    position: relative;
}

.offerings-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(102, 126, 234, 0.5), rgba(118, 75, 162, 0.5), transparent);
}

.btn-large {
    padding: 18px 36px;
    font-size: 1.1rem;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.8), rgba(118, 75, 162, 0.8));
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: white;
    border-radius: 50px;
    box-shadow: 
        0 8px 25px rgba(102, 126, 234, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.btn-large::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.btn-large:hover::before {
    left: 100%;
}

.btn-large:hover {
    background: linear-gradient(135deg, rgba(102, 126, 234, 1), rgba(118, 75, 162, 1));
    transform: translateY(-3px) scale(1.02);
    box-shadow: 
        0 15px 40px rgba(102, 126, 234, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.3);
}

.offerings-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.stat {
    text-align: center;
    min-width: 120px;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.25rem;
}

.stat-text {
    display: block;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* About Section */
.about {
    background: #ffffff;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.about-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
}

.about-info h3 {
    font-size: 1.25rem;
    color: #333;
    margin-bottom: 0.5rem;
}

.about-info p {
    color: #666;
    line-height: 1.6;
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.stat-item {
    text-align: center;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #667eea;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: #666;
    font-weight: 500;
}

/* Services Section - Compact Apple Style */
.services {
    background: var(--apple-white);
    padding: 3rem 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.5rem;
}

.service-card {
    background: white;
    padding: 2rem;
    border-radius: var(--apple-radius);
    box-shadow: var(--apple-shadow);
    transition: var(--apple-transition);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 122, 255, 0.05), transparent);
    transition: left 0.6s ease;
    z-index: 1;
}

.service-card:hover::before {
    left: 100%;
}

.service-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--apple-shadow-large);
}

.service-card > * {
    position: relative;
    z-index: 2;
}

.service-icon {
    width: 60px;
    height: 60px;
    background: var(--apple-gradient);
    border-radius: var(--apple-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    box-shadow: var(--apple-shadow);
}

.service-title {
    font-size: 1.3rem;
    color: var(--apple-black);
    margin-bottom: 1rem;
    font-weight: 600;
    letter-spacing: -0.01em;
}

.service-description {
    color: var(--apple-gray);
    margin-bottom: 1.5rem;
    line-height: 1.5;
    font-size: 0.95rem;
}

.service-features {
    list-style: none;
}

.service-features li {
    color: var(--apple-gray);
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 1.5rem;
    font-size: 0.9rem;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--apple-blue);
    font-weight: bold;
    width: 20px;
    height: 20px;
    background: rgba(0, 122, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}

/* Contact Section - Compact Apple-inspired design */
.contact {
    background: white;
    padding: 3rem 0 2rem;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
}

.contact-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.contact-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1rem;
}

.contact-details h3 {
    font-size: 1rem;
    color: #333;
    margin-bottom: 0.25rem;
    font-weight: 500;
}

.contact-details p {
    color: #666;
    margin-bottom: 0.1rem;
    font-size: 0.9rem;
    line-height: 1.3;
}

.social-links {
    display: flex;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.social-link {
    width: 36px;
    height: 36px;
    background: #f8f9fa;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #667eea;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    transform: translateY(-3px);
}

/* Form Styles */
.form {
    background: #f8f9fa;
    padding: 2.5rem;
    border-radius: 16px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #333;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e1e5e9;
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.3s ease;
    background: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #667eea;
}

.form-group textarea {
    resize: vertical;
}

/* Footer - Apple-inspired compact design */
.footer {
    background: #1a1a1a;
    color: white;
    padding: 2rem 0 1rem;
    font-size: 0.8rem;
}

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

.footer-brand .logo {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
    text-decoration: none;
}

.footer-brand .logo-img {
    height: 24px;
    width: auto;
    object-fit: contain;
}

.footer-description {
    color: #999;
    line-height: 1.4;
    font-size: 0.75rem;
    max-width: 250px;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.footer-column h4 {
    color: white;
    margin-bottom: 0.5rem;
    font-size: 0.8rem;
    font-weight: 500;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 0.25rem;
}

.footer-column ul li a {
    color: #999;
    transition: color 0.3s ease;
    font-size: 0.75rem;
    line-height: 1.3;
}

.footer-column ul li a:hover {
    color: #667eea;
}

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

.footer-copyright {
    color: #999;
    font-size: 0.7rem;
}

.footer-legal {
    display: flex;
    gap: 1.5rem;
}

.footer-legal a {
    color: #999;
    transition: color 0.3s ease;
    font-size: 0.7rem;
}

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

/* Loading and Animation Enhancements */
body:not(.loaded) {
    overflow: hidden;
}

body:not(.loaded)::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}

body:not(.loaded)::after {
    content: '';
    position: fixed;
    top: 50%;
    left: 50%;
    width: 50px;
    height: 50px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-top: 3px solid white;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    transform: translate(-50%, -50%);
    z-index: 10000;
}

@keyframes spin {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Performance optimization styles */
.reduced-animations * {
    animation-duration: 0.3s !important;
    transition-duration: 0.3s !important;
}

.battery-saver .ai-particles,
.battery-saver .ai-particle {
    animation: none !important;
}

.battery-saver .parallax-bg {
    transform: none !important;
}

.lazy {
    opacity: 0;
    transition: opacity 0.3s;
}

.lazy.loaded {
    opacity: 1;
}

/* Skip link styles */
.skip-link:focus {
    top: 6px !important;
}

/* Enhanced loading states */
.loading {
    pointer-events: none;
    opacity: 0.7;
}

.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid var(--apple-color-blue);
    border-radius: 50%;
    border-top-color: transparent;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Enhanced Section Animations */
.about-section,
.services-section,
.contact-section {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.about-section.animate-in,
.services-section.animate-in,
.contact-section.animate-in {
    opacity: 1;
    transform: translateY(0);
}

/* Enhanced Hover Effects */
.service-card {
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
    z-index: 1;
}

.service-card:hover::before {
    left: 100%;
}

.service-card > * {
    position: relative;
    z-index: 2;
}

/* Enhanced Button Styles */
.cta-button {
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.3s ease;
}

.cta-button:hover::before {
    left: 100%;
}

/* Scroll Progress Indicator */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    z-index: 1000;
    transition: width 0.1s ease;
}

/* Terms & Conditions Page Styles */
.legal-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 120px 0 80px;
    text-align: center;
}

.legal-header-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.legal-header-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.legal-meta {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    backdrop-filter: blur(10px);
}

.legal-meta i {
    margin-right: 0.5rem;
}

.legal-content {
    padding: 80px 0;
    background: #f8f9fa;
}

.legal-wrapper {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 3rem;
    max-width: 1400px;
    margin: 0 auto;
}

.legal-nav {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
    height: fit-content;
    position: sticky;
    top: 100px;
}

.legal-nav h3 {
    color: #333;
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.legal-nav ul {
    list-style: none;
}

.legal-nav li {
    margin-bottom: 0.5rem;
}

.legal-nav a {
    color: #666;
    text-decoration: none;
    padding: 0.5rem 0;
    display: block;
    border-left: 3px solid transparent;
    padding-left: 1rem;
    transition: all 0.3s ease;
}

.legal-nav a:hover {
    color: #667eea;
    border-left-color: #667eea;
    background: rgba(102, 126, 234, 0.05);
}

.legal-main {
    background: white;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
}

.legal-intro {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid #f0f0f0;
}

.important-notice {
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    border-radius: 10px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    color: #856404;
}

.legal-section {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #f0f0f0;
}

.legal-section:last-child {
    border-bottom: none;
}

.legal-section h2 {
    color: #333;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #667eea;
    display: inline-block;
}

.legal-section p {
    line-height: 1.8;
    margin-bottom: 1rem;
    color: #555;
}

.definition-list {
    margin: 1.5rem 0;
}

.definition-item {
    background: #f8f9fa;
    padding: 1rem;
    margin-bottom: 1rem;
    border-radius: 8px;
    border-left: 4px solid #667eea;
}

.contact-info {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 10px;
    margin: 1.5rem 0;
}

.contact-info p {
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
}

.contact-info i {
    margin-right: 0.5rem;
    color: #667eea;
    width: 20px;
}

.legal-footer {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 2px solid #f0f0f0;
    text-align: center;
    color: #666;
}

/* Apple-like Design Enhancements */
:root {
    --apple-black: #1d1d1f;
    --apple-white: #f5f5f7;
    --apple-gray: #86868b;
    --apple-gray-light: #f5f5f7;
    --apple-gray-dark: #1d1d1f;
    --apple-blue: #007aff;
    --apple-purple: #af52de;
    --apple-font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto,
        'Helvetica Neue', Arial, sans-serif;
    --apple-gradient: linear-gradient(135deg, #007aff 0%, #af52de 100%);
    --apple-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    --apple-shadow-large: 0 20px 60px rgba(0, 0, 0, 0.15);
    --apple-radius: 16px;
    --apple-radius-large: 24px;
    --apple-blur: blur(20px);
    --apple-transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --apple-spacing-xs: 8px;
    --apple-spacing-sm: 16px;
    --apple-spacing-md: 24px;
    --apple-spacing-lg: 32px;
    --apple-spacing-xl: 48px;
    --apple-spacing-xxl: 64px;
}

/* Apple Typography System */
.apple-title-large {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: var(--apple-black);
}

.apple-title {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -0.01em;
    color: var(--apple-black);
}

.apple-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    font-weight: 400;
    line-height: 1.5;
    color: var(--apple-gray);
    max-width: 600px;
}

.apple-body {
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.6;
    color: var(--apple-gray);
}

/* Apple Glass Effect */
.apple-glass {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: var(--apple-blur);
    -webkit-backdrop-filter: var(--apple-blur);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: var(--apple-shadow);
}

.apple-glass-dark {
    background: rgba(29, 29, 31, 0.8);
    backdrop-filter: var(--apple-blur);
    -webkit-backdrop-filter: var(--apple-blur);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Apple Button System */
.apple-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--apple-spacing-xs);
    padding: var(--apple-spacing-sm) var(--apple-spacing-lg);
    border-radius: var(--apple-radius);
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    transition: var(--apple-transition);
    cursor: pointer;
    border: none;
    min-height: 48px;
    position: relative;
    overflow: hidden;
}

.apple-btn-primary {
    background: var(--apple-gradient);
    color: white;
    box-shadow: var(--apple-shadow);
}

.apple-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--apple-shadow-large);
}

.apple-btn-secondary {
    background: rgba(0, 0, 0, 0.05);
    color: var(--apple-black);
    border: 2px solid rgba(0, 0, 0, 0.1);
    padding: 14px 28px;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    backdrop-filter: blur(20px);
    position: relative;
    overflow: hidden;
    text-shadow: none;
    box-shadow: 
        0 4px 15px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.apple-btn-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 0, 0, 0.05), transparent);
    transition: left 0.5s ease;
}

.apple-btn-secondary:hover::before {
    left: 100%;
}

.apple-btn-secondary:hover {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.9), rgba(118, 75, 162, 0.9));
    border-color: rgba(102, 126, 234, 0.4);
    color: white;
    transform: translateY(-3px) scale(1.02);
    box-shadow: 
        0 12px 35px rgba(0, 0, 0, 0.3),
        0 0 20px rgba(102, 126, 234, 0.4);
}

/* AI Imagery Slider Styles */
.ai-showcase {
    position: relative;
    background: linear-gradient(135deg, #0a0e1a 0%, #1a1f3a 30%, #2d1b69 60%, #667eea 100%);
    padding: var(--apple-spacing-xxl) 0;
    overflow: hidden;
    min-height: 100vh;
}

.ai-showcase::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 25% 25%, rgba(102, 126, 234, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(118, 75, 162, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(59, 130, 246, 0.1) 0%, transparent 70%);
    animation: showcaseGradientShift 15s ease-in-out infinite;
}

@keyframes showcaseGradientShift {
    0%, 100% { opacity: 0.8; }
    25% { opacity: 0.9; }
    50% { opacity: 0.7; }
    75% { opacity: 0.85; }
}

.ai-slider-container {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--apple-spacing-md);
    z-index: 1;
}

.ai-slider {
    position: relative;
    overflow: hidden;
    border-radius: 24px;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.ai-slider-track {
    display: flex;
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.ai-slide {
    min-width: 100%;
    position: relative;
    height: 600px;
    display: flex;
    align-items: center;
    color: white;
    padding: var(--apple-spacing-xl);
    overflow: hidden;
}

.ai-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: inherit;
    opacity: 0.9;
}

.ai-slide-content {
    flex: 1;
    z-index: 2;
    position: relative;
}

.ai-slide-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    margin-bottom: var(--apple-spacing-md);
    line-height: 1.1;
    background: linear-gradient(135deg, #ffffff 0%, rgba(255, 255, 255, 0.8) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.ai-slide-description {
    font-size: 1.3rem;
    line-height: 1.6;
    margin-bottom: var(--apple-spacing-lg);
    color: rgba(255, 255, 255, 0.9);
    font-weight: 400;
    max-width: 500px;
}

.ai-slide-features {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--apple-spacing-sm);
    margin-bottom: var(--apple-spacing-lg);
}

.ai-slide-features li {
    display: flex;
    align-items: center;
    gap: var(--apple-spacing-xs);
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
    padding: 8px 12px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.ai-slide-features li:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

.ai-slide-features li::before {
    content: '✓';
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.8), rgba(118, 75, 162, 0.8));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: bold;
    color: white;
    box-shadow: 0 2px 8px rgba(102, 126, 234, 0.3);
}

.ai-slide-visual {
    flex: 1;
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.ai-visual-element {
    width: 350px;
    height: 350px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.1);
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.ai-icon-large {
    font-size: 8rem;
    color: rgba(255, 255, 255, 0.8);
    animation: aiFloat 8s ease-in-out infinite;
    text-shadow: 0 0 30px rgba(102, 126, 234, 0.5);
    filter: drop-shadow(0 0 20px rgba(118, 75, 162, 0.3));
}

.ai-particles {
    position: absolute;
    width: 120%;
    height: 120%;
    overflow: hidden;
    top: -10%;
    left: -10%;
}

.ai-particle {
    position: absolute;
    width: 6px;
    height: 6px;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.8), rgba(118, 75, 162, 0.8));
    border-radius: 50%;
    animation: aiParticle 6s linear infinite;
    box-shadow: 0 0 10px rgba(102, 126, 234, 0.5);
}

@keyframes aiFloat {
    0%, 100% { 
        transform: translateY(0) rotate(0deg) scale(1); 
    }
    25% { 
        transform: translateY(-15px) rotate(90deg) scale(1.05); 
    }
    50% { 
        transform: translateY(-25px) rotate(180deg) scale(1.1); 
    }
    75% { 
        transform: translateY(-15px) rotate(270deg) scale(1.05); 
    }
}

@keyframes aiParticle {
    0% {
        transform: translateY(150px) scale(0);
        opacity: 0;
    }
    10% {
        opacity: 1;
        transform: translateY(120px) scale(0.5);
    }
    50% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
    90% {
        opacity: 1;
        transform: translateY(-120px) scale(0.5);
    }
    100% {
        transform: translateY(-150px) scale(0);
        opacity: 0;
    }
}

.ai-slider-controls {
    position: absolute;
    bottom: var(--apple-spacing-lg);
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: var(--apple-spacing-sm);
    z-index: 3;
    background: rgba(255, 255, 255, 0.1);
    padding: 12px 20px;
    border-radius: 50px;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.ai-slider-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: 2px solid transparent;
}

.ai-slider-dot:hover {
    background: rgba(255, 255, 255, 0.6);
    transform: scale(1.1);
}

.ai-slider-dot.active {
    background: linear-gradient(135deg, rgba(102, 126, 234, 1), rgba(118, 75, 162, 1));
    transform: scale(1.3);
    box-shadow: 
        0 0 20px rgba(102, 126, 234, 0.5),
        0 4px 15px rgba(0, 0, 0, 0.2);
}

.ai-slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    backdrop-filter: blur(20px);
    z-index: 3;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.ai-slider-nav:hover {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.3), rgba(118, 75, 162, 0.3));
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 
        0 12px 35px rgba(0, 0, 0, 0.2),
        0 0 20px rgba(102, 126, 234, 0.3);
}

.ai-slider-prev {
    left: var(--apple-spacing-lg);
}

.ai-slider-next {
    right: var(--apple-spacing-lg);
}

/* Enhanced Card System with Apple Design */
.apple-card {
    background: white;
    border-radius: var(--apple-radius);
    box-shadow: var(--apple-shadow);
    overflow: hidden;
    transition: var(--apple-transition);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

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

.apple-card-header {
    padding: var(--apple-spacing-lg);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.apple-card-content {
    padding: var(--apple-spacing-lg);
}

.apple-card-footer {
    padding: var(--apple-spacing-lg);
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    background: var(--apple-gray-light);
}

/* Apple-style Section Spacing */
.apple-section {
    padding: var(--apple-spacing-xxl) 0;
}

.apple-section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto var(--apple-spacing-xxl);
}

.apple-grid {
    display: grid;
    gap: var(--apple-spacing-lg);
}

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

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

.apple-grid-4 {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

/* Apple-style Animations */
.apple-fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.apple-fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.apple-scale-in {
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.apple-scale-in.visible {
    opacity: 1;
    transform: scale(1);
}

/* Enhanced Mobile Responsiveness - Content sections */
@media (max-width: 768px) {
    :root {
        --apple-spacing-xxl: 32px;
        --apple-spacing-xl: 24px;
        --apple-spacing-lg: 16px;
    }
    
    /* Compact mobile sections */
    section {
        padding: 2rem 0;
    }
    
    .section-header {
        margin-bottom: 1.5rem;
    }
    
    .section-title {
        font-size: clamp(1.5rem, 4vw, 2rem);
        margin-bottom: 0.75rem;
    }
    
    .section-subtitle {
        font-size: clamp(0.9rem, 2vw, 1rem);
    }
    
    .services {
        padding: 2rem 0;
    }
    
    .ai-showcase {
        min-height: auto;
        padding: var(--apple-spacing-xl) 0;
    }
    
    .ai-slide {
        flex-direction: column;
        text-align: center;
        height: auto;
        min-height: 600px;
        padding: var(--apple-spacing-lg);
        gap: var(--apple-spacing-lg);
    }
    
    .ai-slide-content {
        order: 2;
    }
    
    .ai-slide-visual {
        order: 1;
        margin-bottom: var(--apple-spacing-md);
    }
    
    .ai-slide-features {
        grid-template-columns: 1fr;
        gap: var(--apple-spacing-xs);
    }
    
    .ai-slide-features li {
        padding: 6px 10px;
        font-size: 0.9rem;
    }
    
    .ai-visual-element {
        width: 250px;
        height: 250px;
    }
    
    .ai-icon-large {
        font-size: 5rem;
    }
    
    .ai-slider-nav {
        display: none;
    }
    
    .ai-slider-controls {
        bottom: var(--apple-spacing-md);
        padding: 8px 16px;
    }
    
    /* About Section Mobile Responsiveness */
    .about-content {
        grid-template-columns: 1fr;
        gap: var(--apple-spacing-xl);
    }
    
    .about-text {
        order: 1;
    }
    
    .about-visual {
        order: 2;
    }
    
    .about-item {
        flex-direction: column;
        text-align: center;
        gap: var(--apple-spacing-md);
        margin-bottom: var(--apple-spacing-lg);
    }
    
    .about-icon {
        width: 50px;
        height: 50px;
        align-self: center;
        font-size: 1.25rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: var(--apple-spacing-md);
        max-width: 300px;
        margin: 0 auto;
    }
    
    .stat-item {
        text-align: center;
        padding: var(--apple-spacing-sm);
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
    
    .stat-label {
        font-size: 0.85rem;
    }
    
    /* Contact Section Mobile Responsiveness - Compact */
    .contact {
        padding: 2rem 0 1.5rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-info {
        order: 2;
    }
    
    .contact-form {
        order: 1;
    }
    
    .contact-item {
        flex-direction: row;
        text-align: left;
        gap: 0.75rem;
        margin-bottom: 1rem;
    }
    
    .contact-icon {
        width: 36px;
        height: 36px;
        font-size: 0.9rem;
    }
    
    .contact-details h3 {
        font-size: 0.9rem;
    }
    
    .contact-details p {
        font-size: 0.8rem;
    }
    
    .social-links {
        margin-top: 1rem;
        justify-content: flex-start;
    }
    
    .social-link {
        width: 32px;
        height: 32px;
        font-size: 0.9rem;
    }
    
    .form-row {
        flex-direction: column;
        gap: var(--apple-spacing-md);
    }
    
    .form-group {
        margin-bottom: var(--apple-spacing-md);
    }
    
    .form-group label {
        font-size: 0.9rem;
        margin-bottom: 6px;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 12px;
        font-size: 16px; /* Prevents zoom on iOS */
        border-radius: 8px;
    }
    
    .social-links {
        justify-content: center;
        margin-top: var(--apple-spacing-lg);
    }
    
    .social-link {
        width: 44px;
        height: 44px;
        font-size: 1.1rem;
    }
    
    /* Footer Mobile Responsiveness - Apple-inspired compact */
    .footer {
        padding: 1.5rem 0 1rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-bottom: 1rem;
        text-align: center;
    }
    
    .footer-brand {
        order: 1;
    }
    
    .footer-description {
        margin: 0 auto;
        font-size: 0.7rem;
    }
    
    .footer-links {
        order: 2;
        grid-template-columns: 1fr;
        gap: 1rem;
        max-width: 280px;
        margin: 0 auto;
    }
    
    .footer-column {
        text-align: center;
    }
    
    .footer-column h4 {
        font-size: 0.75rem;
        margin-bottom: 0.4rem;
    }
    
    .footer-column ul li {
        margin-bottom: 0.2rem;
    }
    
    .footer-column ul li a {
        font-size: 0.7rem;
        display: block;
        padding: 2px 0;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
        padding-top: 0.8rem;
    }
    
    .footer-legal {
        gap: 1rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: var(--apple-spacing-md);
        padding-top: var(--apple-spacing-lg);
        text-align: center;
    }
    
    .footer-copyright {
        order: 2;
        font-size: 0.85rem;
    }
    
    .footer-legal {
        order: 1;
        flex-direction: column;
        gap: var(--apple-spacing-sm);
    }
    
    .footer-legal a {
        font-size: 0.85rem;
        display: block;
        padding: 4px 0;
    }
}

/* Small Mobile Devices - 480px and below */
@media (max-width: 480px) {
    :root {
        --apple-spacing-xxl: 24px;
        --apple-spacing-xl: 20px;
        --apple-spacing-lg: 16px;
        --apple-spacing-md: 12px;
        --apple-spacing-sm: 8px;
        --apple-spacing-xs: 6px;
    }
    
    /* Hero adjustments for small screens */
    .hero-container {
        grid-template-columns: 1fr;
        gap: var(--apple-spacing-lg);
        text-align: center;
    }
    
    .hero-visual {
        order: 1;
        height: 300px;
    }
    
    .hero-buttons {
        justify-content: center;
        flex-direction: column;
        align-items: center;
        gap: var(--apple-spacing-sm);
    }
    
    /* Stats grid - single column on tiny screens */
    .stats-grid {
        grid-template-columns: 1fr;
        gap: var(--apple-spacing-sm);
        max-width: 200px;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .stat-label {
        font-size: 0.8rem;
    }
    
    /* Contact adjustments */
    .contact-icon,
    .about-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    /* Footer small mobile */
    .footer {
        padding: var(--apple-spacing-lg) 0;
    }
    
    .footer-content {
        gap: var(--apple-spacing-lg);
        margin-bottom: var(--apple-spacing-md);
    }
    
    .footer-links {
        gap: var(--apple-spacing-md);
        max-width: 250px;
    }
    
    .footer-column h4 {
        font-size: 0.95rem;
        margin-bottom: 6px;
    }
    
    .footer-column ul li {
        margin-bottom: 6px;
    }
    
    .footer-column ul li a {
        font-size: 0.85rem;
        padding: 3px 0;
    }
    
    .footer-bottom {
        gap: var(--apple-spacing-sm);
        padding-top: var(--apple-spacing-md);
    }
    
    .footer-copyright,
    .footer-legal a {
        font-size: 0.8rem;
    }
    
    .footer-legal {
        gap: 6px;
    }
}

/* ===================================
   Apple-Inspired Newsletter Styles
   =================================== */

/* Newsletter Hero */
.apple-newsletter-hero {
    min-height: 60vh;
    background: linear-gradient(135deg, #007aff 0%, #af52de 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.apple-newsletter-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E") repeat;
    animation: float 20s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

.apple-hero-content h1 {
    font-size: 4rem;
    font-weight: 600;
    color: white;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
    line-height: 1.1;
}

.apple-hero-content p {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 400;
    max-width: 600px;
    margin: 0 auto;
}

/* Newsletter Benefits */
.apple-newsletter-benefits {
    padding: 120px 0;
    background: #f5f5f7;
}

.apple-benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.apple-benefit-card {
    text-align: center;
    padding: 3rem 2rem;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.apple-benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.apple-benefit-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem;
    background: linear-gradient(135deg, #007aff, #af52de);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.apple-benefit-icon i {
    font-size: 2rem;
    color: white;
}

.apple-benefit-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1d1d1f;
    margin-bottom: 1rem;
}

.apple-benefit-card p {
    font-size: 1rem;
    color: #86868b;
    line-height: 1.6;
}

/* Newsletter Subscription */
.apple-newsletter-subscribe {
    padding: 120px 0;
    background: white;
}

.apple-subscribe-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.apple-subscribe-content h2 {
    font-size: 3rem;
    font-weight: 600;
    color: #1d1d1f;
    margin-bottom: 1rem;
    letter-spacing: -0.01em;
}

.apple-subscribe-content > p {
    font-size: 1.25rem;
    color: #86868b;
    margin-bottom: 4rem;
}

.apple-subscribe-form {
    max-width: 600px;
    margin: 0 auto;
}

.apple-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.apple-form-group {
    position: relative;
}

.apple-form-group input,
.apple-form-group select {
    width: 100%;
    padding: 1rem 1.5rem;
    border: 2px solid #e5e5e7;
    border-radius: 12px;
    font-size: 1rem;
    font-family: inherit;
    background: #f5f5f7;
    transition: all 0.3s ease;
}

.apple-form-group input:focus,
.apple-form-group select:focus {
    outline: none;
    border-color: #007aff;
    background: white;
    box-shadow: 0 0 0 4px rgba(0, 122, 255, 0.1);
}

.apple-subscribe-btn {
    width: 100%;
    padding: 1.25rem 2rem;
    background: linear-gradient(135deg, #007aff, #af52de);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin: 2rem 0 1.5rem;
}

.apple-subscribe-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 122, 255, 0.3);
}

.apple-privacy-note {
    font-size: 0.9rem;
    color: #86868b;
    text-align: center;
}

.apple-privacy-note a {
    color: #007aff;
    text-decoration: none;
}

.apple-privacy-note a:hover {
    text-decoration: underline;
}

/* Newsletter Archive */
.apple-newsletter-archive {
    padding: 120px 0;
    background: #f5f5f7;
}

.apple-archive-header {
    text-align: center;
    margin-bottom: 5rem;
}

.apple-archive-header h2 {
    font-size: 3rem;
    font-weight: 600;
    color: #1d1d1f;
    margin-bottom: 1rem;
    letter-spacing: -0.01em;
}

.apple-archive-header p {
    font-size: 1.25rem;
    color: #86868b;
}

.apple-archive-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.apple-archive-card {
    background: white;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.apple-archive-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.apple-archive-date {
    font-size: 0.9rem;
    color: #007aff;
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.apple-archive-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1d1d1f;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.apple-archive-card p {
    font-size: 1rem;
    color: #86868b;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.apple-archive-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #007aff;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.apple-archive-link:hover {
    gap: 1rem;
}

.apple-archive-link i {
    transition: transform 0.3s ease;
}

.apple-archive-link:hover i {
    transform: translateX(5px);
}

/* Newsletter CTA */
.apple-newsletter-cta {
    padding: 120px 0;
    background: linear-gradient(135deg, #1d1d1f 0%, #2d2d30 100%);
    text-align: center;
}

.apple-cta-content h2 {
    font-size: 3rem;
    font-weight: 600;
    color: white;
    margin-bottom: 1rem;
    letter-spacing: -0.01em;
}

.apple-cta-content p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 3rem;
}

.apple-cta-btn {
    display: inline-block;
    padding: 1.25rem 3rem;
    background: linear-gradient(135deg, #007aff, #af52de);
    color: white;
    text-decoration: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.apple-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0, 122, 255, 0.4);
}

/* Responsive Design for Newsletter */
@media (max-width: 1024px) {
    .apple-hero-content h1 {
        font-size: 3rem;
    }
    
    .apple-subscribe-content h2,
    .apple-archive-header h2,
    .apple-cta-content h2 {
        font-size: 2.5rem;
    }
    
    .apple-benefits-grid {
        gap: 3rem;
    }
    
    .apple-archive-grid {
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .apple-newsletter-hero {
        min-height: 50vh;
        padding: 2rem 0;
    }
    
    .apple-hero-content h1 {
        font-size: 2.5rem;
    }
    
    .apple-hero-content p {
        font-size: 1.2rem;
    }
    
    .apple-newsletter-benefits,
    .apple-newsletter-subscribe,
    .apple-newsletter-archive,
    .apple-newsletter-cta {
        padding: 80px 0;
    }
    
    .apple-subscribe-content h2,
    .apple-archive-header h2,
    .apple-cta-content h2 {
        font-size: 2rem;
    }
    
    .apple-form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .apple-benefits-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .apple-archive-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .apple-benefit-card,
    .apple-archive-card {
        padding: 2rem;
    }
}

@media (max-width: 480px) {
    .apple-hero-content h1 {
        font-size: 2rem;
    }
    
    .apple-hero-content p {
        font-size: 1rem;
    }
    
    .apple-subscribe-content h2,
    .apple-archive-header h2,
    .apple-cta-content h2 {
        font-size: 1.75rem;
    }
    
    .apple-newsletter-benefits,
    .apple-newsletter-subscribe,
    .apple-newsletter-archive,
    .apple-newsletter-cta {
        padding: 60px 0;
    }
    
    .apple-benefit-card,
    .apple-archive-card {
        padding: 1.5rem;
    }
    
    .apple-archive-header {
        margin-bottom: 3rem;
    }
}

/* ========================================
   Apple-style Legal Pages Styles
   ======================================== */

/* Legal Hero Section */
.apple-legal-hero {
    background: linear-gradient(135deg, #007aff 0%, #af52de 100%);
    padding: 120px 0 80px;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.apple-legal-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 20%, rgba(255,255,255,0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(255,255,255,0.05) 0%, transparent 50%);
    pointer-events: none;
}

.apple-legal-hero .apple-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.apple-legal-hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.apple-legal-hero p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    font-weight: 400;
}

.apple-legal-meta {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
}

.apple-meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
    opacity: 0.8;
}

.apple-meta-item i {
    font-size: 1rem;
}

/* Legal Content Layout */
.apple-legal-content {
    padding: 80px 0;
    background: #fafafa;
}

.apple-legal-wrapper {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

/* Legal Navigation Sidebar */
.apple-legal-nav {
    position: sticky;
    top: 120px;
    height: fit-content;
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    border: 1px solid rgba(0,0,0,0.05);
}

.apple-nav-header h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1d1d1f;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #f5f5f7;
}

.apple-nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.apple-nav-list li {
    margin-bottom: 0.5rem;
}

.apple-nav-link {
    display: block;
    padding: 0.75rem 1rem;
    color: #424245;
    text-decoration: none;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 400;
    transition: all 0.2s ease;
    border-left: 3px solid transparent;
}

.apple-nav-link:hover {
    background: #f5f5f7;
    color: #007aff;
    border-left-color: #007aff;
    transform: translateX(4px);
}

/* Legal Main Content */
.apple-legal-main {
    background: white;
    border-radius: 16px;
    padding: 3rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    border: 1px solid rgba(0,0,0,0.05);
}

.apple-legal-intro {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid #f5f5f7;
}

.apple-legal-intro p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #424245;
    margin-bottom: 1.5rem;
}

.apple-important-notice {
    background: linear-gradient(135deg, #fff5f5 0%, #fef7f7 100%);
    border: 1px solid #fecaca;
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    font-weight: 500;
    color: #dc2626;
}

/* Legal Sections */
.apple-legal-section {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #f5f5f7;
}

.apple-legal-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.apple-legal-section h2 {
    font-size: 1.75rem;
    font-weight: 600;
    color: #1d1d1f;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #007aff;
    display: inline-block;
}

.apple-legal-section h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #424245;
    margin-bottom: 1rem;
    margin-top: 2rem;
}

.apple-legal-section p {
    font-size: 1rem;
    line-height: 1.7;
    color: #424245;
    margin-bottom: 1rem;
}

.apple-legal-section ul {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.apple-legal-section ul li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 0.75rem;
    font-size: 1rem;
    line-height: 1.6;
    color: #424245;
}

.apple-legal-section ul li::before {
    content: '';
    position: absolute;
    left: 0.5rem;
    top: 0.7rem;
    width: 6px;
    height: 6px;
    background: #007aff;
    border-radius: 50%;
}

/* Subsections */
.apple-subsection {
    margin: 2rem 0;
    padding: 1.5rem;
    background: #f9f9fb;
    border-radius: 12px;
    border-left: 4px solid #007aff;
}

.apple-subsection h3 {
    margin-top: 0;
    color: #1d1d1f;
}

/* Definition Lists */
.apple-definition-list {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.apple-definition-item {
    padding: 1.5rem;
    background: #f9f9fb;
    border-radius: 12px;
    border-left: 4px solid #af52de;
    font-size: 1rem;
    line-height: 1.6;
    color: #424245;
}

.apple-definition-item strong {
    color: #1d1d1f;
    display: block;
    margin-bottom: 0.5rem;
}

/* Contact Information */
.apple-contact-info {
    background: #f9f9fb;
    border-radius: 12px;
    padding: 2rem;
    margin: 2rem 0;
}

.apple-contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 1rem;
    color: #424245;
}

.apple-contact-item:last-child {
    margin-bottom: 0;
}

.apple-contact-item i {
    width: 20px;
    text-align: center;
    color: #007aff;
}

.apple-contact-item a {
    color: #007aff;
    text-decoration: none;
    font-weight: 500;
}

.apple-contact-item a:hover {
    text-decoration: underline;
}

/* Legal Footer */
.apple-legal-footer {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 2px solid #f5f5f7;
    text-align: center;
    background: linear-gradient(135deg, #f9f9fb 0%, #f5f5f7 100%);
    border-radius: 12px;
    padding: 2rem;
}

.apple-legal-footer p {
    margin-bottom: 0.5rem;
    color: #424245;
    font-size: 0.95rem;
}

.apple-legal-footer p:last-child {
    margin-bottom: 0;
    font-style: italic;
    opacity: 0.8;
}

/* Responsive Design for Legal Pages */
@media (max-width: 1024px) {
    .apple-legal-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .apple-legal-nav {
        position: static;
        order: -1;
    }
    
    .apple-nav-list {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 0.5rem;
    }
}

@media (max-width: 768px) {
    .apple-legal-hero {
        padding: 100px 0 60px;
        min-height: 50vh;
    }
    
    .apple-legal-hero h1 {
        font-size: 2.5rem;
    }
    
    .apple-legal-hero p {
        font-size: 1.1rem;
    }
    
    .apple-legal-content {
        padding: 60px 0;
    }
    
    .apple-legal-main {
        padding: 2rem;
    }
    
    .apple-legal-nav {
        padding: 1.5rem;
    }
    
    .apple-nav-list {
        grid-template-columns: 1fr;
    }
    
    .apple-legal-section h2 {
        font-size: 1.5rem;
    }
    
    .apple-meta-item {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .apple-legal-hero h1 {
        font-size: 2rem;
    }
    
    .apple-legal-hero p {
        font-size: 1rem;
    }
    
    .apple-legal-main {
        padding: 1.5rem;
        border-radius: 12px;
    }
    
    .apple-legal-nav {
        padding: 1rem;
        border-radius: 12px;
    }
    
    .apple-legal-section h2 {
        font-size: 1.3rem;
    }
    
    .apple-subsection,
    .apple-definition-item,
    .apple-contact-info {
        padding: 1rem;
    }
    
    .apple-meta-item {
        font-size: 0.85rem;
    }
}

/* Smooth scroll behavior for legal page navigation */
.apple-legal-nav a[href^="#"] {
    scroll-behavior: smooth;
}

/* Enhanced hover effects */
.apple-legal-section a:not(.apple-nav-link) {
    color: #007aff;
    text-decoration: none;
    font-weight: 500;
    border-bottom: 1px solid transparent;
    transition: border-color 0.2s ease;
}

.apple-legal-section a:not(.apple-nav-link):hover {
    border-bottom-color: #007aff;
}

/* =====================
   ADVANCED ANIMATIONS & UTILITIES
   ===================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(0, 122, 255, 0.3);
    }
    50% {
        box-shadow: 0 0 40px rgba(0, 122, 255, 0.5);
    }
}

@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }
    100% {
        background-position: 1000px 0;
    }
}

@keyframes slideInFromLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInFromRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Smooth scroll behavior */
html {
    scroll-behavior: smooth;
}

/* High-quality text rendering */
body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

/* =====================
   PARTNERS SECTION - ENHANCED
   ===================== */
.partners-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #f5f5f7 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.partners-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: -50%;
    width: 200%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 122, 255, 0.03), transparent);
    animation: shimmer 20s infinite;
    pointer-events: none;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 40px;
    margin-top: 60px;
    position: relative;
    z-index: 1;
}

.partner-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 32px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    border: 1px solid rgba(0, 0, 0, 0.06);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.partner-logo::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #007aff, #5856d6);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.partner-logo:hover::before {
    transform: scaleX(1);
}

.partner-logo:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 122, 255, 0.15);
    border-color: rgba(0, 122, 255, 0.2);
}

.partner-logo i {
    font-size: 3rem;
    color: #007aff;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    filter: drop-shadow(0 4px 8px rgba(0, 122, 255, 0.2));
}

.partner-logo:hover i {
    transform: scale(1.15) rotate(-5deg);
    filter: drop-shadow(0 8px 16px rgba(0, 122, 255, 0.3));
}

.partner-logo span {
    font-size: 1rem;
    font-weight: 600;
    color: #1d1d1f;
    text-align: center;
    transition: color 0.3s ease;
}

.partner-logo:hover span {
    color: #007aff;
}

/* =====================
   TESTIMONIALS SECTION - ENHANCED
   ===================== */
.testimonials-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f5f5f7 100%);
    position: relative;
    overflow: hidden;
}

.testimonials-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 122, 255, 0.1), transparent);
}

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

.testimonial-card {
    background: white;
    border-radius: 24px;
    padding: 48px;
    position: relative;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    border: 2px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 24px;
    left: 32px;
    font-size: 96px;
    font-weight: 700;
    color: rgba(0, 122, 255, 0.08);
    line-height: 1;
    font-family: Georgia, serif;
    transition: all 0.4s ease;
}

.testimonial-card::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 122, 255, 0.05) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.testimonial-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 24px 48px rgba(0, 122, 255, 0.12);
    border-color: rgba(0, 122, 255, 0.2);
}

.testimonial-card:hover::before {
    color: rgba(0, 122, 255, 0.12);
    transform: scale(1.1);
}

.testimonial-card:hover::after {
    opacity: 1;
}

.testimonial-stars {
    display: flex;
    gap: 6px;
    margin-bottom: 24px;
    position: relative;
    z-index: 2;
}

.testimonial-stars i {
    color: #ffb800;
    font-size: 1.125rem;
    transition: transform 0.3s ease;
    filter: drop-shadow(0 2px 4px rgba(255, 184, 0, 0.3));
}

.testimonial-card:hover .testimonial-stars i {
    transform: scale(1.1);
}

.testimonial-card:hover .testimonial-stars i:nth-child(1) {
    transition-delay: 0s;
}
.testimonial-card:hover .testimonial-stars i:nth-child(2) {
    transition-delay: 0.05s;
}
.testimonial-card:hover .testimonial-stars i:nth-child(3) {
    transition-delay: 0.1s;
}
.testimonial-card:hover .testimonial-stars i:nth-child(4) {
    transition-delay: 0.15s;
}
.testimonial-card:hover .testimonial-stars i:nth-child(5) {
    transition-delay: 0.2s;
}

.testimonial-text {
    font-size: 1.125rem;
    line-height: 1.7;
    color: #1d1d1f;
    margin-bottom: 28px;
    position: relative;
    z-index: 2;
    font-weight: 400;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
    padding-top: 24px;
    border-top: 2px solid rgba(0, 122, 255, 0.1);
    position: relative;
    z-index: 2;
}

.author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #007aff 0%, #5856d6 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(0, 122, 255, 0.3);
    transition: all 0.3s ease;
}

.testimonial-card:hover .author-avatar {
    transform: scale(1.1) rotate(-5deg);
    box-shadow: 0 8px 20px rgba(0, 122, 255, 0.4);
}

.author-info h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1d1d1f;
    margin: 0 0 4px 0;
    transition: color 0.3s ease;
}

.testimonial-card:hover .author-info h4 {
    color: #007aff;
}

.author-info p {
    font-size: 0.9375rem;
    color: #6e6e73;
    margin: 0;
}

/* =====================
   PROCESS SECTION
   ===================== */
.process-section {
    padding: 100px 0;
    background: white;
}

.process-timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 48px;
    margin-top: 60px;
    position: relative;
}

.process-step {
    text-align: center;
    position: relative;
}

.process-number {
    font-size: 4rem;
    font-weight: 700;
    background: linear-gradient(135deg, #007aff 0%, #5856d6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0.2;
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    line-height: 1;
}

.process-icon {
    width: 80px;
    height: 80px;
    border-radius: 24px;
    background: linear-gradient(135deg, #007aff 0%, #5856d6 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    color: white;
    font-size: 2rem;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.process-step:hover .process-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 24px rgba(0, 122, 255, 0.3);
}

.process-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1d1d1f;
    margin: 24px 0 16px;
}

.process-description {
    font-size: 1.0625rem;
    line-height: 1.6;
    color: #6e6e73;
}

/* =====================
   TECH STACK SECTION
   ===================== */
.tech-stack-section {
    padding: 100px 0;
    background: #f5f5f7;
}

.tech-categories {
    display: grid;
    gap: 48px;
    margin-top: 60px;
}

.tech-category {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.tech-category:hover {
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
}

.tech-category-title {
    font-size: 1.75rem;
    font-weight: 600;
    color: #1d1d1f;
    margin-bottom: 32px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.tech-category-title i {
    color: #007aff;
    font-size: 1.5rem;
}

.tech-stack-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 24px;
}

.tech-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 24px;
    background: #f5f5f7;
    border-radius: 12px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.tech-item:hover {
    background: white;
    border-color: #007aff;
    transform: translateY(-4px);
}

.tech-item i {
    font-size: 2.5rem;
    color: #007aff;
    transition: transform 0.3s ease;
}

.tech-item:hover i {
    transform: scale(1.2);
}

.tech-item span {
    font-size: 1rem;
    font-weight: 600;
    color: #1d1d1f;
    text-align: center;
}

/* =====================
   FAQ SECTION
   ===================== */
.faq-section {
    padding: 100px 0;
    background: white;
}

.faq-container {
    max-width: 900px;
    margin: 60px auto 0;
}

.faq-item {
    background: #f5f5f7;
    border-radius: 16px;
    margin-bottom: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.faq-question {
    width: 100%;
    padding: 24px 28px;
    background: none;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    cursor: pointer;
    text-align: left;
    font-size: 1.125rem;
    font-weight: 600;
    color: #1d1d1f;
    transition: all 0.3s ease;
}

.faq-question:hover {
    color: #007aff;
}

.faq-question i {
    color: #007aff;
    transition: transform 0.3s ease;
    font-size: 1rem;
    flex-shrink: 0;
}

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

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

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

.faq-answer p {
    padding: 0 28px 24px;
    margin: 0;
    font-size: 1.0625rem;
    line-height: 1.6;
    color: #6e6e73;
}

/* =====================
   CTA SECTION
   ===================== */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #007aff 0%, #5856d6 100%);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="white" opacity="0.1"/></svg>');
    opacity: 0.3;
}

.cta-content {
    text-align: center;
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
}

.cta-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
    line-height: 1.2;
}

.cta-description {
    font-size: 1.25rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 60px;
}

.apple-btn-large {
    padding: 18px 36px;
    font-size: 1.125rem;
}

.cta-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    max-width: 700px;
    margin: 0 auto;
    padding-top: 60px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

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

.cta-stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: white;
    line-height: 1;
    margin-bottom: 12px;
}

.cta-stat-label {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

/* =====================
   RESPONSIVE STYLES FOR NEW SECTIONS
   ===================== */
@media (max-width: 1024px) {
    .partners-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
    }

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

    .process-timeline {
        grid-template-columns: repeat(2, 1fr);
    }

    .tech-stack-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .partners-section,
    .testimonials-section,
    .process-section,
    .tech-stack-section,
    .faq-section,
    .cta-section {
        padding: 60px 0;
    }

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

    .partner-logo {
        padding: 24px;
    }

    .partner-logo i {
        font-size: 2.5rem;
    }

    .testimonial-card {
        padding: 32px 24px;
    }

    .process-timeline {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .tech-category {
        padding: 32px 24px;
    }

    .tech-stack-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .faq-question {
        padding: 20px;
        font-size: 1rem;
    }

    .faq-answer p {
        padding: 0 20px 20px;
        font-size: 1rem;
    }

    .cta-title {
        font-size: 2rem;
    }

    .cta-description {
        font-size: 1.125rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .apple-btn-large {
        width: 100%;
        max-width: 320px;
    }

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

@media (max-width: 480px) {
    .partners-grid {
        grid-template-columns: 1fr;
    }

    .partner-logo {
        padding: 24px;
    }

    .partner-logo i {
        font-size: 2.5rem;
    }

    .partner-logo span {
        font-size: 0.9375rem;
    }

    .testimonial-card {
        padding: 32px 24px;
    }

    .testimonial-card::before {
        font-size: 72px;
        top: 16px;
        left: 20px;
    }

    .testimonial-text {
        font-size: 1rem;
    }

    .author-avatar {
        width: 52px;
        height: 52px;
        font-size: 1.25rem;
    }

    .process-number {
        font-size: 3rem;
    }

    .process-icon {
        width: 64px;
        height: 64px;
        font-size: 1.5rem;
    }

    .process-title {
        font-size: 1.25rem;
    }

    .tech-stack-grid {
        grid-template-columns: 1fr;
    }

    .tech-item {
        padding: 20px;
    }

    .tech-item i {
        font-size: 2rem;
    }

    .cta-stat-number {
        font-size: 2.5rem;
    }

    .faq-question {
        font-size: 0.9375rem;
        padding: 16px;
    }

    .faq-answer p {
        font-size: 0.9375rem;
        padding: 0 16px 16px;
    }
}

/* Enhanced Ultra-Wide Screen Support */
@media (min-width: 1920px) {
    .container {
        max-width: 1400px;
    }

    .section-title {
        font-size: 4rem;
    }

    .section-subtitle {
        font-size: 1.5rem;
    }
}

/* Enhanced Tablet Landscape */
@media (min-width: 769px) and (max-width: 1024px) {
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-timeline {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Smooth transitions for responsive changes */
@media (prefers-reduced-motion: no-preference) {
    * {
        scroll-behavior: smooth;
    }

    .partner-logo,
    .testimonial-card,
    .process-step,
    .tech-item,
    .faq-item {
        will-change: transform;
    }
}

/* Dark mode support (future-ready) */
@media (prefers-color-scheme: dark) {
    /* Placeholder for dark mode variables */
}

/* High DPI / Retina Display Optimization */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    body {
        -webkit-font-smoothing: subpixel-antialiased;
    }

    .partner-logo i,
    .testimonial-stars i,
    .process-icon i,
    .tech-item i {
        transform: translateZ(0);
        -webkit-backface-visibility: hidden;
        backface-visibility: hidden;
    }
}

/* =====================
   ENHANCED HERO SECTION WITH GRADIENT ORBS
   ===================== */
.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    z-index: 0;
}

.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.3;
    animation: floatOrb 20s ease-in-out infinite;
}

.orb-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0, 122, 255, 0.4) 0%, transparent 70%);
    top: -250px;
    left: -250px;
    animation-delay: 0s;
}

.orb-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(88, 86, 214, 0.3) 0%, transparent 70%);
    top: 50%;
    right: -200px;
    animation-delay: 7s;
}

.orb-3 {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(175, 82, 222, 0.25) 0%, transparent 70%);
    bottom: -150px;
    left: 30%;
    animation-delay: 14s;
}

@keyframes floatOrb {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(50px, -50px) scale(1.1);
    }
    66% {
        transform: translate(-30px, 30px) scale(0.9);
    }
}

/* =====================
   ENHANCED BUTTON RIPPLE EFFECT
   ===================== */
.btn-enhanced {
    position: relative;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0.0, 0.2, 1);
}

.btn-enhanced:active {
    transform: scale(0.98);
}

.btn-ripple {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
    pointer-events: none;
}

.btn-enhanced:active .btn-ripple {
    width: 300px;
    height: 300px;
}

.apple-btn-primary.btn-enhanced {
    box-shadow: 0 4px 15px rgba(0, 122, 255, 0.3);
}

.apple-btn-primary.btn-enhanced:hover {
    box-shadow: 0 8px 25px rgba(0, 122, 255, 0.4);
    transform: translateY(-2px);
}

.apple-btn-secondary.btn-enhanced:hover {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    transform: translateY(-2px);
}

/* =====================
   SCROLL TO TOP BUTTON
   ===================== */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #007aff 0%, #5856d6 100%);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    box-shadow: 0 4px 20px rgba(0, 122, 255, 0.4);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    z-index: 9999;
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-to-top:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 8px 30px rgba(0, 122, 255, 0.5);
}

.scroll-to-top:active {
    transform: translateY(-5px) scale(1.05);
}

/* =====================
   PAGE LOADER
   ===================== */
.page-loader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #f5f5f7 0%, #ffffff 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.page-loader.loaded {
    opacity: 0;
    visibility: hidden;
}

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

.loader-spinner {
    width: 50px;
    height: 50px;
    border: 3px solid rgba(0, 122, 255, 0.1);
    border-top-color: #007aff;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    margin: 0 auto 20px;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.loader-text {
    color: #1d1d1f;
    font-size: 1rem;
    font-weight: 500;
    animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 0.6;
    }
    50% {
        opacity: 1;
    }
}

/* =====================
   ENHANCED FORM WITH FLOATING LABELS
   ===================== */
.form-floating {
    position: relative;
    margin-bottom: 1.5rem;
}

.form-floating input,
.form-floating textarea,
.form-floating select {
    width: 100%;
    padding: 1rem 0.75rem 0.5rem;
    font-size: 1rem;
    background: transparent;
    border: none;
    border-bottom: 2px solid rgba(0, 0, 0, 0.1);
    outline: none;
    transition: all 0.3s ease;
    color: #1d1d1f;
}

.form-floating label {
    position: absolute;
    top: 1rem;
    left: 0.75rem;
    font-size: 1rem;
    color: #6e6e73;
    pointer-events: none;
    transition: all 0.3s cubic-bezier(0.4, 0.0, 0.2, 1);
    background: transparent;
}

.form-floating input:focus,
.form-floating textarea:focus,
.form-floating select:focus {
    border-bottom-color: #007aff;
}

.form-floating input:not(:placeholder-shown) ~ label,
.form-floating textarea:not(:placeholder-shown) ~ label,
.form-floating select:not([value=""]) ~ label,
.form-floating input:focus ~ label,
.form-floating textarea:focus ~ label,
.form-floating select:focus ~ label {
    top: -0.5rem;
    left: 0;
    font-size: 0.875rem;
    color: #007aff;
    font-weight: 600;
}

.input-line {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #007aff, #5856d6);
    transition: width 0.4s cubic-bezier(0.4, 0.0, 0.2, 1);
}

.form-floating input:focus ~ .input-line,
.form-floating textarea:focus ~ .input-line,
.form-floating select:focus ~ .input-line {
    width: 100%;
}

.form-floating textarea {
    resize: vertical;
    min-height: 120px;
}

/* =====================
   ENHANCED NAVIGATION ACTIVE STATES
   ===================== */
.nav-link {
    position: relative;
    transition: color 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #007aff, #5856d6);
    transform: translateX(-50%);
    transition: width 0.3s cubic-bezier(0.4, 0.0, 0.2, 1);
}

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

.nav-link.active {
    color: #007aff;
    font-weight: 600;
}

/* =====================
   ENHANCED CARD INTERACTIONS
   ===================== */
.service-card,
.partner-logo,
.testimonial-card,
.tech-category {
    cursor: pointer;
    user-select: none;
}

.service-card:active,
.partner-logo:active,
.tech-item:active {
    transform: scale(0.98);
}

/* Visual Feedback for Clicks */
@keyframes tap-feedback {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(0.95);
    }
    100% {
        transform: scale(1);
    }
}

/* =====================
   SMOOTH PAGE TRANSITIONS
   ===================== */
body.loaded {
    animation: fadeIn 0.5s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* =====================
   ENHANCED MOBILE RESPONSIVENESS
   ===================== */
@media (max-width: 768px) {
    .gradient-orb {
        filter: blur(60px);
    }

    .orb-1 {
        width: 300px;
        height: 300px;
    }

    .orb-2 {
        width: 250px;
        height: 250px;
    }

    .orb-3 {
        width: 200px;
        height: 200px;
    }

    .scroll-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
        font-size: 1.125rem;
    }

    .form-floating input,
    .form-floating textarea,
    .form-floating select {
        font-size: 16px; /* Prevents zoom on iOS */
    }
}

/* =====================
   ACCESSIBILITY ENHANCEMENTS
   ===================== */
*:focus-visible {
    outline: 2px solid #007aff;
    outline-offset: 2px;
    border-radius: 4px;
}

button:focus-visible,
a:focus-visible {
    outline: 2px solid #007aff;
    outline-offset: 4px;
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .gradient-orb {
        animation: none;
    }

    .scroll-to-top {
        transition: opacity 0.2s;
    }
}

/* =====================
   ENHANCED CONTACT SECTION ICONS
   ===================== */
.contact-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, #007aff 0%, #5856d6 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 4px 20px rgba(0, 122, 255, 0.3);
    position: relative;
    overflow: hidden;
}

.contact-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.contact-icon:hover::before {
    left: 100%;
}

.contact-icon i {
    color: white;
    font-size: 1.5rem;
    z-index: 1;
    transition: transform 0.3s ease;
}

.contact-item:hover .contact-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 30px rgba(0, 122, 255, 0.4);
}

.contact-item:hover .contact-icon i {
    transform: scale(1.1);
}

/* Enhanced Social Links */
.social-link {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, #007aff 0%, #5856d6 100%);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 4px 15px rgba(0, 122, 255, 0.25);
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.social-link:hover::before {
    left: 100%;
}

.social-link i {
    color: white;
    font-size: 1.25rem;
    z-index: 1;
    transition: transform 0.3s ease;
}

.social-link:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 8px 25px rgba(0, 122, 255, 0.35);
}

.social-link:hover i {
    transform: scale(1.15);
}

/* =====================
   SAFARI DROPDOWN FIX
   ===================== */
.form-floating select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23007aff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    background-size: 1.25rem;
    padding-right: 2.5rem;
    cursor: pointer;
}

/* Safari-specific fixes */
@supports (-webkit-appearance: none) {
    .form-floating select {
        background-color: transparent;
    }
    
    .form-floating select:focus {
        background-color: transparent;
    }
    
    .form-floating select option {
        background-color: white;
        color: #1d1d1f;
    }
}

/* Improve select on mobile Safari/iOS */
@supports (-webkit-touch-callout: none) {
    .form-floating select {
        font-size: 16px;
        min-height: 44px;
    }
}

/* Enhanced select states */
.form-floating select:focus {
    outline: none;
    border-bottom-color: #007aff;
}

.form-floating select:hover {
    border-bottom-color: rgba(0, 122, 255, 0.5);
}

/* Fix for select label */
.form-floating select:not([value=""]) ~ label,
.form-floating select:focus ~ label {
    top: -0.5rem;
    left: 0;
    font-size: 0.875rem;
    color: #007aff;
    font-weight: 600;
}

/* Improve dropdown arrow animation */
.form-floating select:focus {
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23007aff' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
}

/* =====================
   ENHANCED PROCESS ICONS
   ===================== */
.process-icon {
    width: 80px;
    height: 80px;
    border-radius: 24px;
    background: linear-gradient(135deg, #007aff 0%, #5856d6 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    color: white;
    font-size: 2rem;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    z-index: 1;
    box-shadow: 0 8px 25px rgba(0, 122, 255, 0.25);
    overflow: hidden;
}

.process-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.process-step:hover .process-icon::before {
    left: 100%;
}

.process-step:hover .process-icon {
    transform: scale(1.15) rotate(-5deg);
    box-shadow: 0 12px 35px rgba(0, 122, 255, 0.35);
}

/* =====================
   ENHANCED SERVICE CARD ICONS
   ===================== */
.service-icon {
    width: 72px;
    height: 72px;
    border-radius: 20px;
    background: linear-gradient(135deg, #007aff 0%, #5856d6 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 6px 20px rgba(0, 122, 255, 0.25);
    position: relative;
    overflow: hidden;
}

.service-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.service-card:hover .service-icon::before {
    left: 100%;
}

.service-icon i {
    color: white;
    font-size: 2rem;
    transition: transform 0.3s ease;
    z-index: 1;
}

.service-card:hover .service-icon {
    transform: scale(1.12) rotate(-5deg);
    box-shadow: 0 10px 30px rgba(0, 122, 255, 0.35);
}

.service-card:hover .service-icon i {
    transform: scale(1.1);
}

/* =====================
   ENHANCED OFFERING ICONS
   ===================== */
.offering-icon {
    width: 64px;
    height: 64px;
    border-radius: 18px;
    background: linear-gradient(135deg, #007aff 0%, #5856d6 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 4px 18px rgba(0, 122, 255, 0.25);
    position: relative;
    overflow: hidden;
}

.offering-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.offering-item:hover .offering-icon::before {
    left: 100%;
}

.offering-icon i {
    color: white;
    font-size: 1.75rem;
    transition: transform 0.3s ease;
    z-index: 1;
}

.offering-item:hover .offering-icon {
    transform: scale(1.1) rotate(-5deg);
    box-shadow: 0 8px 25px rgba(0, 122, 255, 0.35);
}

.offering-item:hover .offering-icon i {
    transform: scale(1.1);
}

/* =====================
   RESPONSIVE FIXES FOR ICONS
   ===================== */
@media (max-width: 768px) {
    .contact-icon {
        width: 56px;
        height: 56px;
    }

    .contact-icon i {
        font-size: 1.25rem;
    }

    .social-link {
        width: 44px;
        height: 44px;
    }

    .social-link i {
        font-size: 1.125rem;
    }

    .service-icon {
        width: 64px;
        height: 64px;
    }

    .service-icon i {
        font-size: 1.75rem;
    }
}
