/* ===================================
   iOffice Static Website Stylesheet
   ===================================
   For WordPress Theme Development
   Author: iOffice Team
   =================================== */
/* ===================================
   1. IMPORTS & FONTS
   =================================== */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');
/* ===================================
   2. CSS CUSTOM PROPERTIES (VARIABLES)
   =================================== */
:root {
    /* Colors - Light Mode */
    --background: hsl(210, 20%, 98%);
    --foreground: hsl(222, 47%, 11%);
    --card: hsl(0, 0%, 100%);
    --card-foreground: hsl(222, 47%, 11%);
    --primary: hsl(217, 91%, 50%);
    --primary-foreground: hsl(0, 0%, 100%);
    --secondary: hsl(210, 40%, 96%);
    --secondary-foreground: hsl(222, 47%, 11%);
    --muted: hsl(210, 40%, 96%);
    --muted-foreground: hsl(215, 16%, 47%);
    --accent: hsl(262, 83%, 58%);
    --accent-foreground: hsl(0, 0%, 100%);
    --success: hsl(142, 76%, 36%);
    --success-foreground: hsl(0, 0%, 100%);
    --destructive: hsl(0, 84%, 60%);
    --border: hsl(214, 32%, 91%);
    --input: hsl(214, 32%, 91%);
    --ring: hsl(217, 91%, 50%);
    --radius: 0.75rem;
    /* Gradients */
    /*--gradient-primary: linear-gradient(135deg, hsl(217, 91%, 50%) 0%, hsl(262, 83%, 58%) 100%);*/
    --gradient-primary: linear-gradient(150deg, #a631a9, #ff8300);
    --gradient-hero: linear-gradient(135deg, hsl(217, 91%, 97%) 0%, hsl(262, 83%, 97%) 50%, hsl(210, 40%, 98%) 100%);
    --gradient-card: linear-gradient(180deg, hsl(0, 0%, 100%) 0%, hsl(210, 40%, 98%) 100%);
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    --shadow-glow: 0 0 40px -10px hsla(217, 91%, 50%, 0.3);

    /* iOffice Brand Colors */
    --ioffice-blue-50: hsl(214, 100%, 97%);
    --ioffice-blue-100: hsl(214, 95%, 93%);
    --ioffice-blue-500: hsl(217, 91%, 50%);
    --ioffice-blue-600: hsl(217, 91%, 45%);
    --ioffice-blue-700: hsl(217, 91%, 38%);
    --ioffice-orange: hsl(25, 95%, 53%);
    --ioffice-green: hsl(142, 71%, 45%);
    --ioffice-purple: hsl(262, 83%, 58%);
    --ioffice-teal: hsl(174, 84%, 40%);
}
/* ===================================
   3. CSS RESET & BASE STYLES
   =================================== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
html {
    scroll-behavior: smooth;
}
body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    background-color: var(--background);
    color: var(--foreground);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
img {
    max-width: 100%;
    height: auto;
    display: block;
}
a {
    color: inherit;
    text-decoration: none;
}
ul, ol {
    list-style: none;
}
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    letter-spacing: -0.025em;
    line-height: 1.2;
}
/* ===================================
   4. LAYOUT UTILITIES
   =================================== */
.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}
@media (min-width: 640px) {
    .container {
        padding: 0 2rem;
    }
}
.flex {
    display: flex;
}
.flex-col {
    flex-direction: column;
}
.items-center {
    align-items: center;
}
.justify-center {
    justify-content: center;
}
.justify-between {
    justify-content: space-between;
}
.gap-1 { gap: 0.25rem; }
.gap-2 { gap: 0.5rem; }
.gap-3 { gap: 0.75rem; }
.gap-4 { gap: 1rem; }
.gap-6 { gap: 1.5rem; }
.gap-8 { gap: 2rem; }
.gap-12 { gap: 3rem; }
.grid {
    display: grid;
}
.grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}
@media (min-width: 768px) {
    .md-grid-cols-2 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .md-grid-cols-3 {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
    .md-grid-cols-4 {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}
@media (min-width: 1024px) {
    .lg-grid-cols-2 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .lg-grid-cols-3 {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
    .lg-grid-cols-4 {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
    .lg-grid-cols-6 {
        grid-template-columns: repeat(6, minmax(0, 1fr));
    }
}
.text-center { text-align: center; }
.text-left { text-align: left; }
.hidden { display: none; }
@media (min-width: 1024px) {
    .lg-flex { display: flex; }
    .lg-hidden { display: none; }
    .lg-block { display: block; }
    .lg-text-left { text-align: left; }
}
/* ===================================
   5. TYPOGRAPHY
   =================================== */
.text-sm { font-size: 0.875rem; }
.text-base { font-size: 1rem; }
.text-lg { font-size: 1.125rem; }
.text-xl { font-size: 1.25rem; }
.text-2xl { font-size: 1.5rem; }
.text-3xl { font-size: 1.875rem; }
.text-4xl { font-size: 2.25rem; }
.text-5xl { font-size: 3rem; }
.text-6xl { font-size: 3.75rem; }
@media (min-width: 768px) {
    .md-text-4xl { font-size: 2.25rem; }
    .md-text-5xl { font-size: 3rem; }
}
@media (min-width: 1024px) {
    .lg-text-6xl { font-size: 3.75rem; }
}
.font-medium { font-weight: 500; }
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }
.text-muted { color: var(--muted-foreground); }
.text-primary { color: var(--primary); }
.text-success { color: var(--success); }
.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
/* ===================================
   6. BACKGROUNDS & GRADIENTS
   =================================== */
.bg-background { background-color: var(--background); }
.bg-card { background-color: var(--card); }
.bg-muted { background-color: var(--muted); }
.bg-muted-50 { background-color: hsla(210, 40%, 96%, 0.5); }
.bg-foreground { background-color: var(--foreground); }
.bg-primary { background-color: var(--primary); }
.gradient-bg {
    background: var(--gradient-primary);
}
.hero-gradient {
    background: var(--gradient-hero);
}
.card-gradient {
    background: var(--gradient-card);
}
.glass {
    background: hsla(0, 0%, 100%, 0.8);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid hsla(214, 32%, 91%, 0.5);
}
/* ===================================
   7. HEADER STYLES
   =================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    background: var(--background);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid hsla(214, 32%, 91%, 1);
}
.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 4rem;
}
@media (min-width: 1024px) {
    .header-container {
        height: 5rem;
    }
}
.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.logo-icon {
    width: 2.5rem;
    height: 2.5rem;
    background: var(--gradient-primary);
    background-image: url("../images/ioffice-logo.png");
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    //box-shadow: var(--shadow-md);
    transition: box-shadow 0.2s;
}
.logo:hover .logo-icon {
    box-shadow: var(--shadow-lg);
}
.logo-icon svg {
    width: 1.25rem;
    height: 1.25rem;
    color: var(--primary-foreground);
}
.logo-text {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--foreground);
}
/* Desktop Navigation */
.nav-desktop {
    display: none;
    align-items: center;
    gap: 0.25rem;
}
@media (min-width: 1024px) {
    .nav-desktop {
        display: flex;
    }
}
.nav-link {
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--muted-foreground);
    transition: all 0.2s;
}
.nav-link:hover {
    color: var(--foreground);
    background-color: var(--muted);
}
.nav-link.active {
    color: var(--primary);
    background-color: hsla(217, 91%, 50%, 0.1);
}
/* Header CTA Buttons */
.header-cta {
    display: none;
    align-items: center;
    gap: 0.75rem;
}
@media (min-width: 1024px) {
    .header-cta {
        display: flex;
    }
}
/* Mobile Menu Button */
.mobile-menu-btn {
    display: flex;
    padding: 0.5rem;
    border-radius: 0.5rem;
    background: transparent;
    border: none;
    cursor: pointer;
    transition: background-color 0.2s;
}
.mobile-menu-btn:hover {
    background-color: var(--muted);
}
.mobile-menu-btn svg {
    width: 1.5rem;
    height: 1.5rem;
    color: var(--foreground);
}
@media (min-width: 1024px) {
    .mobile-menu-btn {
        display: none;
    }
}
/* Mobile Navigation */
.nav-mobile {
    display: none;
    padding: 1rem 0;
    border-top: 1px solid var(--border);
    animation: fadeIn 0.3s ease-out;
}
.nav-mobile.open {
    display: block;
}
@media (min-width: 1024px) {
    .nav-mobile {
        display: none !important;
    }
}
.nav-mobile-links {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}
.nav-mobile-link {
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--muted-foreground);
    transition: all 0.2s;
}
.nav-mobile-link:hover {
    color: var(--foreground);
    background-color: var(--muted);
}
.nav-mobile-link.active {
    color: var(--primary);
    background-color: hsla(217, 91%, 50%, 0.1);
}
.nav-mobile-cta {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border);
}
/* ===================================
   8. BUTTON STYLES
   =================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    white-space: nowrap;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    border: none;
    cursor: pointer;
    transition: all 0.2s;
}
.btn:focus-visible {
    outline: 2px solid var(--ring);
    outline-offset: 2px;
}
.btn:disabled {
    pointer-events: none;
    opacity: 0.5;
}
.btn svg {
    width: 1rem;
    height: 1rem;
    pointer-events: none;
    flex-shrink: 0;
}
/* Button Sizes */
.btn-sm {
    height: 2.25rem;
    padding: 0 0.75rem;
    border-radius: 0.375rem;
}
.btn-md {
    height: 2.5rem;
    padding: 0 1rem;
}
.btn-lg {
    height: 3rem;
    padding: 0 2rem;
    font-size: 1rem;
    border-radius: 0.5rem;
}
.btn-xl {
    height: 3.5rem;
    padding: 0 2.5rem;
    font-size: 1.125rem;
    border-radius: 0.75rem;
}
/* Button Variants */
.btn-primary {
    background-color: var(--primary);
    color: var(--primary-foreground);
    box-shadow: var(--shadow-md);
}
.btn-primary:hover {
    background-color: hsl(217, 91%, 45%);
    box-shadow: var(--shadow-lg);
}
.btn-secondary {
    background-color: var(--secondary);
    color: var(--secondary-foreground);
}
.btn-secondary:hover {
    background-color: hsl(210, 40%, 90%);
}
.btn-ghost {
    background: transparent;
    color: var(--foreground);
}
.btn-ghost:hover {
    background-color: var(--muted);
}
.btn-outline {
    background: transparent;
    border: 1px solid var(--border);
    color: var(--foreground);
}
.btn-outline:hover {
    background-color: var(--accent);
    color: var(--accent-foreground);
}
.btn-hero {
    background: var(--gradient-primary);
    color: var(--primary-foreground);
    box-shadow: var(--shadow-lg);
}
.btn-hero:hover {
    box-shadow: var(--shadow-xl);
    transform: scale(1.05);
}
.btn-hero:active {
    transform: scale(1);
}
.btn-hero-outline {
    background: transparent;
    /*border: 2px solid var(--primary);*/
    /*color: var(--primary);*/
    border: 2px solid hsl(14.82deg 100% 50% / 58.82%);
    color: hsl(7.62deg 12.17% 8.08%);
}
.btn-hero-outline:hover {
    /*background-color: var(--primary);*/
    background: var(--gradient-primary);
    color: var(--primary-foreground);
}
.btn-glass {
    background: hsla(0, 0%, 100%, 0.1);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid hsla(0, 0%, 100%, 0.2);
    color: var(--primary-foreground);
}
.btn-glass:hover {
    background: hsla(0, 0%, 100%, 0.2);
}
.btn-white {
    background-color: var(--background);
    color: var(--primary);
}
.btn-white:hover {
    background-color: hsla(0, 0%, 100%, 0.9);
}
.btn-full {
    width: 100%;
}
/* ===================================
   9. CARD STYLES
   =================================== */
.card {
    background: var(--gradient-card);
    border-radius: 1rem;
    border: 1px solid var(--border);
    padding: 1.5rem;
    transition: all 0.3s;
}
.card:hover {
    border-color: hsla(217, 91%, 50%, 0.5);
    box-shadow: var(--shadow-xl);
}
.card-icon {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    transition: transform 0.2s;
}
.card:hover .card-icon {
    transform: scale(1.1);
}
.card-icon svg {
    width: 1.75rem;
    height: 1.75rem;
}
.card-icon-gradient {
    background: var(--gradient-primary);
}
.card-icon-gradient svg {
    color: var(--primary-foreground);
}
.card-icon-blue {
    background: hsl(217, 91%, 95%);
}
.card-icon-blue svg {
    color: hsl(217, 91%, 50%);
}
.card-icon-green {
    background: hsl(142, 76%, 95%);
}
.card-icon-green svg {
    color: hsl(142, 76%, 36%);
}
.card-icon-orange {
    background: hsl(24, 95%, 95%);
}
.card-icon-orange svg {
    color: hsl(24, 95%, 50%);
}
.card-icon-red {
    background: hsl(0, 84%, 95%);
}
.card-icon-red svg {
    color: hsl(0, 84%, 60%);
}
.card-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}
.card-description {
    color: var(--muted-foreground);
    margin-bottom: 1rem;
}
.card-link {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    color: var(--primary);
    font-weight: 500;
    font-size: 0.875rem;
    transition: gap 0.2s;
}
.card-link:hover {
    gap: 0.5rem;
}
.card-link svg {
    width: 1rem;
    height: 1rem;
}
/* Glass Card */
.glass-card {
    background: hsla(0, 0%, 100%, 0.8);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid hsla(214, 32%, 91%, 0.5);
    border-radius: 1rem;
    padding: 1.5rem;
}
/* Stats Card */
.stats-card {
    background: hsla(0, 0%, 100%, 0.8);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid hsla(214, 32%, 91%, 0.5);
    border-radius: 1rem;
    padding: 1.5rem;
    text-align: center;
}
.stats-value {
    font-size: 2rem;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}
@media (min-width: 768px) {
    .stats-value {
        font-size: 2.25rem;
    }
}
.stats-label {
    font-size: 0.875rem;
    color: var(--muted-foreground);
}
/* ===================================
   10. FORM STYLES
   =================================== */
.form-group {
    margin-bottom: 1.5rem;
}
.form-label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: var(--foreground);
}
.form-input,
.form-textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    font-size: 0.875rem;
    border: 1px solid var(--border);
    border-radius: 0.5rem;
    background-color: var(--background);
    color: var(--foreground);
    transition: border-color 0.2s, box-shadow 0.2s;
}
.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px hsla(217, 91%, 50%, 0.1);
}
.form-input::placeholder,
.form-textarea::placeholder {
    color: var(--muted-foreground);
}
.form-textarea {
    resize: vertical;
    min-height: 8rem;
}
.form-row {
    display: grid;
    gap: 1rem;
}
@media (min-width: 640px) {
    .form-row {
        grid-template-columns: repeat(2, 1fr);
    }
}
/* ===================================
   11. SECTION STYLES
   =================================== */
.section {
    padding: 5rem 0;
}
@media (min-width: 1024px) {
    .section {
        padding: 6rem 0;
    }
}
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}
.section-title {
    font-size: 1.875rem;
    font-weight: 700;
    margin-bottom: 1rem;
}
@media (min-width: 768px) {
    .section-title {
        font-size: 2.25rem;
    }
}
.section-description {
    font-size: 1.125rem;
    color: var(--muted-foreground);
    max-width: 42rem;
    margin: 0 auto;
}
/* Hero Section */
.hero {
    position: relative;
    overflow: hidden;
    padding: 5rem 0;
}
@media (min-width: 1024px) {
    .hero {
        padding: 8rem 0;
    }
}
.hero-content {
    display: grid;
    gap: 3rem;
    align-items: center;
}
@media (min-width: 1024px) {
    .hero-content {
        grid-template-columns: repeat(2, 1fr);
    }
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    background-color: hsla(217, 91%, 50%, 0.1);
    color: var(--primary);
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
}
.hero-badge svg {
    width: 1rem;
    height: 1rem;
}
.hero-title {
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}
@media (min-width: 768px) {
    .hero-title {
        font-size: 3rem;
    }
}
@media (min-width: 1024px) {
    .hero-title {
        font-size: 3.75rem;
    }
}
.hero-description {
    font-size: 1.125rem;
    color: var(--muted-foreground);
    margin-bottom: 2rem;
    max-width: 36rem;
}
.hero-cta {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
@media (min-width: 640px) {
    .hero-cta {
        flex-direction: row;
    }
}
.hero-features {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem;
    margin-top: 2rem;
    font-size: 0.875rem;
    color: var(--muted-foreground);
}
.hero-feature {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}
.hero-feature svg {
    width: 1rem;
    height: 1rem;
    color: var(--success);
}
/* Hero Image */
.hero-image-container {
    position: relative;
}
.hero-image-wrapper {
    position: relative;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: var(--shadow-xl), var(--shadow-glow);
}
.hero-image {
    width: 100%;
    height: auto;
    animation: float 6s ease-in-out infinite;
}
.hero-floating-card {
    position: absolute;
    bottom: -1rem;
    left: -1rem;
    background: hsla(0, 0%, 100%, 0.8);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid hsla(214, 32%, 91%, 0.5);
    border-radius: 0.75rem;
    padding: 1rem;
    box-shadow: var(--shadow-xl);
    animation: fadeUp 0.6s ease-out forwards;
    animation-delay: 0.4s;
    opacity: 0;
}
.hero-floating-content {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}
.hero-floating-icon {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
}
.hero-floating-icon svg {
    width: 1.25rem;
    height: 1.25rem;
    color: var(--primary-foreground);
}
.hero-floating-text {
    font-weight: 600;
    color: var(--foreground);
}
.hero-floating-subtext {
    font-size: 0.75rem;
    color: var(--muted-foreground);
}
/* Decorative elements */
.hero-decoration {
    position: absolute;
    border-radius: 50%;
    filter: blur(48px);
    pointer-events: none;
}
.hero-decoration-1 {
    top: 25%;
    right: 0;
    width: 18rem;
    height: 18rem;
    background: hsla(217, 91%, 50%, 0.05);
}
.hero-decoration-2 {
    bottom: 0;
    left: 25%;
    width: 24rem;
    height: 24rem;
    background: hsla(262, 83%, 58%, 0.05);
}
/* ===================================
   12. FOOTER STYLES
   =================================== */
.footer {
    /*background-color: var(--foreground);*/
    background-image: linear-gradient(0deg, #ca60cc, #ff8300);
    color: var(--background);
    padding: 4rem 0;
}
.footer-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}
@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}
@media (min-width: 1024px) {
    .footer-grid {
        grid-template-columns: 2fr repeat(4, 1fr);
        gap: 3rem;
    }
}
.footer-brand {
    grid-column: span 2;
}
@media (min-width: 1024px) {
    .footer-brand {
        grid-column: span 1;
    }
}
.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}
.footer-logo-icon {
    width: 2.5rem;
    height: 2.5rem;
    background: var(--gradient-primary);
    background-image: url("../images/ioffice-logo.png");
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
}
.footer-logo-icon svg {
    width: 1.25rem;
    height: 1.25rem;
    color: var(--primary-foreground);
}
.footer-logo-text {
    font-size: 1.25rem;
    font-weight: 700;
}
.footer-logo-text span {
    color: var(--primary);
}
.footer-tagline {
    color: hsla(0, 0%, 100%, 0.7);
    font-size: 0.875rem;
    max-width: 20rem;
    margin-bottom: 1.5rem;
}
.footer-social {
    display: flex;
    gap: 0.75rem;
}
.footer-social-link {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 0.5rem;
    background: hsla(0, 0%, 100%, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.2s;
}
.footer-social-link:hover {
    /*background-color: var(--primary);*/
    background-color: #f4e7db;
}
.footer-social-link svg {
    width: 1rem;
    height: 1rem;
    /*color: hsla(0, 0%, 100%, 0.7);*/
    color: #a73671;
    transition: color 0.2s;
}
.footer-social-link:hover svg {
    color: var(--primary-foreground);
}
.footer-column-title {
    font-weight: 600;
    margin-bottom: 1rem;
}
.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.footer-link {
    font-size: 0.875rem;
    color: hsla(0, 0%, 100%, 0.7);
    transition: color 0.2s;
}
.footer-link:hover {
    /*color: var(--primary);*/
    color: #FFE7D1;
    font-weight: 900;
}
.footer-bottom {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid hsla(0, 0%, 100%, 0.1);
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}
@media (min-width: 768px) {
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
    }
}
.footer-copyright {
    font-size: 0.875rem;
    color: hsla(0, 0%, 100%, 0.6);
}
.footer-made-with {
    font-size: 0.875rem;
    color: hsla(0, 0%, 100%, 0.6);
}
/* ===================================
   13. PRICING SECTION
   =================================== */
.pricing-card {
    background: var(--gradient-card);
    border-radius: 1rem;
    border: 1px solid var(--border);
    padding: 2rem;
    position: relative;
}
.pricing-card-popular {
    background: var(--gradient-primary);
    color: var(--primary-foreground);
    box-shadow: var(--shadow-xl), var(--shadow-glow);
    transform: scale(1.05);
}
.pricing-badge {
    position: absolute;
    top: -1rem;
    left: 50%;
    transform: translateX(-50%);
    padding: 0.25rem 1rem;
    border-radius: 9999px;
    background: var(--background);
    color: var(--primary);
    font-size: 0.875rem;
    font-weight: 500;
}
.pricing-name {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}
.pricing-price {
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}
.pricing-period {
    color: var(--muted-foreground);
}
.pricing-card-popular .pricing-period {
    color: hsla(0, 0%, 100%, 0.7);
}
.pricing-description {
    margin-bottom: 1.5rem;
    color: var(--muted-foreground);
}
.pricing-card-popular .pricing-description {
    color: hsla(0, 0%, 100%, 0.8);
}
.pricing-features {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 2rem;
}
.pricing-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
}
.pricing-feature svg {
    width: 1.25rem;
    height: 1.25rem;
    color: var(--success);
    flex-shrink: 0;
}
.pricing-card-popular .pricing-feature svg {
    color: var(--primary-foreground);
}
/* ===================================
   14. TESTIMONIALS
   =================================== */
.testimonial-card {
    background: var(--gradient-card);
    border-radius: 1rem;
    border: 1px solid var(--border);
    padding: 1.5rem;
}
.testimonial-stars {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1rem;
}
.testimonial-stars svg {
    width: 1.25rem;
    height: 1.25rem;
    fill: hsl(45, 93%, 58%);
    color: hsl(45, 93%, 58%);
}
.testimonial-content {
    color: var(--foreground);
    margin-bottom: 1.5rem;
    font-style: italic;
}
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}
.testimonial-avatar {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-foreground);
    font-weight: 600;
}
.testimonial-name {
    font-weight: 600;
    color: var(--foreground);
}
.testimonial-role {
    font-size: 0.875rem;
    color: var(--muted-foreground);
}
/* ===================================
   15. CTA SECTION
   =================================== */
.cta-section {
    /*background: var(--gradient-primary);*/
    padding: 5rem 0;
    text-align: center;
}
@media (min-width: 1024px) {
    .cta-section {
        padding: 8rem 0;
    }
}
.cta-title {
    font-size: 1.875rem;
    font-weight: 700;
    /*color: var(--primary-foreground);*/
    color: var(--foreground);
    margin-bottom: 1rem;
}
@media (min-width: 768px) {
    .cta-title {
        font-size: 2.25rem;
    }
}
.cta-description {
    font-size: 1.125rem;
    /*color: hsla(0, 0%, 100%, 0.8);*/
    color: var(--muted-foreground);
    max-width: 42rem;
    margin: 0 auto 2rem;
}
.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
    align-items: center;
}
@media (min-width: 640px) {
    .cta-buttons {
        flex-direction: row;
    }
}
/* ===================================
   16. BENEFITS SECTION
   =================================== */
.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}
.benefit-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 0.75rem;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.benefit-icon svg {
    width: 1.5rem;
    height: 1.5rem;
    color: var(--primary-foreground);
}
.benefit-title {
    font-weight: 600;
    margin-bottom: 0.25rem;
}
.benefit-description {
    font-size: 0.875rem;
    color: var(--muted-foreground);
}
/* ===================================
   17. TRUSTED COMPANIES SECTION
   =================================== */
.trusted-section {
    padding: 3rem 0;
    background: hsla(210, 40%, 96%, 0.5);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}
.trusted-label {
    text-align: center;
    font-size: 0.875rem;
    color: var(--muted-foreground);
    margin-bottom: 1.5rem;
}
.trusted-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 2rem;
}
@media (min-width: 768px) {
    .trusted-logos {
        gap: 4rem;
    }
}
.trusted-logo {
    font-size: 1.25rem;
    font-weight: 600;
    color: hsla(215, 16%, 47%, 0.5);
    transition: color 0.2s;
}
.trusted-logo:hover {
    color: var(--foreground);
}
/* ===================================
   18. PRODUCT CARD (Detailed)
   =================================== */
.product-section {
    display: grid;
    gap: 3rem;
    align-items: center;
    margin-bottom: 5rem;
}
@media (min-width: 1024px) {
    .product-section {
        grid-template-columns: repeat(2, 1fr);
    }
}
.product-section:last-child {
    margin-bottom: 0;
}
.product-section.reversed .product-content {
    order: 2;
}
@media (min-width: 1024px) {
    .product-section.reversed .product-content {
        order: 1;
    }
    .product-section.reversed .product-image {
        order: 2;
    }
}
.product-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 1rem;
}
.product-badge-blue {
    background: hsl(217, 91%, 95%);
    color: hsl(217, 91%, 50%);
}
.product-badge-green {
    background: hsl(142, 76%, 95%);
    color: hsl(142, 76%, 36%);
}
.product-badge-orange {
    background: hsl(24, 95%, 95%);
    color: hsl(24, 95%, 50%);
}
.product-badge-red {
    background: hsl(0, 84%, 95%);
    color: hsl(0, 84%, 60%);
}
.product-badge svg {
    width: 1rem;
    height: 1rem;
}
.product-title {
    font-size: 1.875rem;
    font-weight: 700;
    margin-bottom: 1rem;
}
@media (min-width: 768px) {
    .product-title {
        font-size: 2.25rem;
    }
}
.product-description {
    font-size: 1.125rem;
    color: var(--muted-foreground);
    margin-bottom: 1.5rem;
}
.product-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
    margin-bottom: 2rem;
}
.product-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
}
.product-feature svg {
    width: 1.25rem;
    height: 1.25rem;
    color: var(--success);
    flex-shrink: 0;
}
.product-image {
    aspect-ratio: 16/9;
    border-radius: 1rem;
    padding: 0.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
}
.product-image-blue {
    background: linear-gradient(135deg, hsl(217, 91%, 50%) 0%, hsl(217, 91%, 55%) 100%);
}
.product-image-green {
    background: linear-gradient(135deg, hsl(142, 76%, 36%) 0%, hsl(142, 76%, 46%) 100%);
}
.product-image-orange {
    background: linear-gradient(135deg, hsl(24, 95%, 50%) 0%, hsl(24, 95%, 55%) 100%);
}
.product-image-red {
    background: linear-gradient(135deg, hsl(0, 84%, 55%) 0%, hsl(0, 84%, 60%) 100%);
}
.product-image-inner {
    width: 100%;
    height: 100%;
    background: var(--background);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
}
.product-image-inner img {
    width: 100%;
    height: 100%;
    border-radius: 0.75rem;
}
.product-image-inner svg {
    width: 6rem;
    height: 6rem;
}
/* ===================================
   19. VOLUME PRICING
   =================================== */
.volume-tier {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem;
    background: var(--muted);
    border-radius: 0.5rem;
}
.volume-tier-range {
    font-weight: 500;
}
.volume-tier-discount {
    color: var(--primary);
    font-weight: 600;
}
/* ===================================
   20. CONTACT INFO
   =================================== */
.contact-card {
    background: hsla(0, 0%, 100%, 0.8);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid hsla(214, 32%, 91%, 0.5);
    border-radius: 1rem;
    padding: 1.5rem;
    text-align: center;
}
.contact-card-icon {
    width: 3rem;
    height: 3rem;
    margin: 0 auto 1rem;
    border-radius: 0.75rem;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
}
.contact-card-icon svg {
    width: 1.5rem;
    height: 1.5rem;
    color: var(--primary-foreground);
}
.contact-card-title {
    font-weight: 600;
    margin-bottom: 0.25rem;
}
.contact-card-detail {
    color: var(--primary);
    font-weight: 500;
    margin-bottom: 0.25rem;
}
.contact-card-description {
    font-size: 0.875rem;
    color: var(--muted-foreground);
}
/* Support Option */
.support-option {
    background: var(--gradient-card);
    border-radius: 0.75rem;
    border: 1px solid var(--border);
    padding: 1.5rem;
    transition: border-color 0.2s;
}
.support-option:hover {
    border-color: hsla(217, 91%, 50%, 0.5);
}
.support-option-content {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}
.support-option-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 0.75rem;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.support-option-icon svg {
    width: 1.5rem;
    height: 1.5rem;
    color: var(--primary-foreground);
}
.support-option-title {
    font-weight: 600;
    margin-bottom: 0.25rem;
}
.support-option-description {
    font-size: 0.875rem;
    color: var(--muted-foreground);
    margin-bottom: 0.75rem;
}
/* FAQ Preview */
.faq-preview {
    background: var(--gradient-card);
    border-radius: 0.75rem;
    border: 1px solid var(--border);
    padding: 1.5rem;
    margin-top: 2rem;
}
.faq-preview-title {
    font-weight: 600;
    margin-bottom: 1rem;
}
.faq-preview-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}
.faq-preview-link {
    font-size: 0.875rem;
    color: var(--muted-foreground);
    transition: color 0.2s;
}
.faq-preview-link:hover {
    color: var(--primary);
}
/* Map Placeholder */
.map-placeholder {
    aspect-ratio: 16/9;
    background: linear-gradient(135deg, hsla(217, 91%, 50%, 0.05) 0%, hsla(262, 83%, 58%, 0.05) 100%);
    border-radius: 1rem;
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
}
.map-placeholder-content {
    text-align: center;
}
.map-placeholder-icon {
    width: 3rem;
    height: 3rem;
    margin: 0 auto 1rem;
    color: var(--primary);
}
.map-placeholder-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}
.map-placeholder-address {
    color: var(--muted-foreground);
}
/* ===================================
   21. TOAST NOTIFICATIONS
   =================================== */
.toast-container {
    position: fixed;
    bottom: 1rem;
    right: 1rem;
    z-index: 100;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.toast {
    padding: 1rem 1.5rem;
    background: var(--foreground);
    color: var(--background);
    border-radius: 0.5rem;
    box-shadow: var(--shadow-xl);
    animation: slideIn 0.3s ease-out;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}
.toast-success {
    background: var(--success);
    color: var(--success-foreground);
}
.toast svg {
    width: 1.25rem;
    height: 1.25rem;
}
@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}
/* ===================================
   22. ANIMATIONS
   =================================== */
@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}
.animate-fade-up {
    animation: fadeUp 0.6s ease-out forwards;
}
.animate-fade-in {
    animation: fadeIn 0.5s ease-out forwards;
}
.animate-scale-in {
    animation: scaleIn 0.5s ease-out forwards;
}
.animate-float {
    animation: float 6s ease-in-out infinite;
}
/* Animation delays */
.delay-100 { animation-delay: 0.1s; }
.delay-200 { animation-delay: 0.2s; }
.delay-300 { animation-delay: 0.3s; }
.delay-400 { animation-delay: 0.4s; }
/* ===================================
   23. UTILITY CLASSES
   =================================== */
.main-content {
    padding-top: 4rem;
}
@media (min-width: 1024px) {
    .main-content {
        padding-top: 5rem;
    }
}
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}
.mx-auto {
    margin-left: auto;
    margin-right: auto;
}
.mb-1 { margin-bottom: 0.25rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mt-4 { margin-top: 1rem; }
.mt-8 { margin-top: 2rem; }
.shrink-0 { flex-shrink: 0; }
.w-full { width: 100%; }
.max-w-2xl { max-width: 42rem; }
.max-w-5xl { max-width: 64rem; }


/* ===================================
   24. Features Section
   =================================== */
.section-padding { padding: 4rem 0; }
@media (min-width: 768px) { .section-padding { padding: 5rem 0; } }
@media (min-width: 1024px) { .section-padding { padding: 6rem 0; } }

.container-custom { max-width: 80rem; margin: 0 auto; padding: 0 1rem; }
@media (min-width: 640px) { .container-custom { padding: 0 1.5rem; } }
@media (min-width: 1024px) { .container-custom { padding: 0 2rem; } }

.text-gradient {
    background: linear-gradient(135deg, hsl(217, 91%, 50%) 0%, hsl(262, 83%, 58%) 50%, hsl(217, 91%, 38%) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Highlights */
.highlights-grid { display: grid; gap: 1.5rem; margin-bottom: 4rem; }
@media (min-width: 768px) { .highlights-grid { grid-template-columns: repeat(3, 1fr); } }

.highlight-item {
    display: flex; align-items: center; gap: 1rem;
    padding: 1.5rem; border-radius: 0.75rem;
    background-color: hsl(214, 100%, 97%);
    border: 1px solid hsl(214, 95%, 93%);
}

.highlight-icon {
    width: 3rem; height: 3rem; border-radius: 0.75rem; flex-shrink: 0;
    /*background: linear-gradient(135deg, hsl(217, 91%, 50%) 0%, hsl(217, 91%, 38%) 100%);*/
    background: linear-gradient(150deg, #a631a9, #ff8300);
    display: flex; align-items: center; justify-content: center;
}

.highlight-title { font-weight: 600; color: hsl(222, 47%, 11%); }
.highlight-desc { font-size: 0.875rem; color: hsl(215, 16%, 47%); }

/* Features Grid */
.features-grid { display: grid; gap: 2rem; }
@media (min-width: 768px) { .features-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .features-grid { grid-template-columns: repeat(3, 1fr); } }

.feature-card {
    background: white; border-radius: 1rem; padding: 2rem;
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1);
    border: 1px solid hsl(214, 32%, 91%, 0.3);
    transition: all 0.3s ease;
}
.feature-card:hover { box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1); transform: translateY(-4px); }

.feature-icon {
    width: 3.5rem; height: 3.5rem; border-radius: 1rem;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 1.5rem; transition: transform 0.3s ease;
}
.feature-card:hover .feature-icon { transform: scale(1.1); }

.feature-title { font-size: 1.25rem; font-weight: 600; color: hsl(222, 47%, 11%); margin-bottom: 0.75rem; }
.feature-desc { color: hsl(215, 16%, 47%); line-height: 1.625; }



/* ===================================
   25. Product Details Section
   =================================== */
.product-details {
    background: linear-gradient(180deg, var(--background) 0%, var(--ioffice-blue-50) 100%);
}

.product-details-header {
    text-align: center;
    max-width: 48rem;
    margin: 0 auto 4rem;
}

.product-details-label {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 600;
    /*color: var(--primary);*/
    color: hsl(3.72deg 60% 57.84%);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
}

.product-details-title {
    font-size: 1.875rem;
    font-weight: 700;
    color: var(--foreground);
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .product-details-title {
        font-size: 2.25rem;
    }
}

@media (min-width: 1024px) {
    .product-details-title {
        font-size: 3rem;
    }
}

.product-details-description {
    font-size: 1.125rem;
    color: var(--muted-foreground);
}

.product-details-grid {
    display: grid;
    gap: 2rem;
}

@media (min-width: 768px) {
    .product-details-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .product-details-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Detail Card */
.detail-card {
    background: var(--card);
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: var(--shadow-md);
    border: 1px solid hsla(214, 32%, 91%, 0.3);
    transition: all 0.3s;
}

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

.detail-card-icon {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    color: white;
}

.detail-icon-blue {
    background: var(--ioffice-blue-500);
}

.detail-icon-green {
    background: var(--ioffice-green);
}

.detail-icon-purple {
    background: var(--ioffice-purple);
}

.detail-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--foreground);
    margin-bottom: 0.25rem;
}

.detail-card-subtitle {
    font-size: 0.875rem;
    color: var(--muted-foreground);
    margin-bottom: 1.25rem;
}

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

.detail-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.625rem 0;
    border-bottom: 1px solid var(--border);
}

.detail-list li:last-child {
    border-bottom: none;
}

.detail-list li svg {
    color: var(--ioffice-green);
    flex-shrink: 0;
}

.detail-list li span {
    color: var(--muted-foreground);
    font-size: 0.9375rem;
}

.detail-list li strong {
    color: var(--foreground);
}
