/* ================================================================
   CLOUDS11 - MAIN STYLESHEET
   Color Scheme: Purple #6254e7 | Orange #ff7426 | Dark #3b3663
   Fonts: Nunito (headings) | Rubik (body)
   ================================================================ */

:root {
    --primary:    #6254e7;
    --primary-dark: #4b3ecf;
    --secondary:  #ff7426;
    --dark:       #3b3663;
    --dark-deep:  #1e1b3a;
    --text:       #555577;
    --text-light: #888aaa;
    --white:      #ffffff;
    --light-bg:   #f8f7ff;
    --border:     #e8e6ff;
    --gradient:   linear-gradient(135deg, #6254e7 0%, #9b50e0 100%);
    --gradient-orange: linear-gradient(135deg, #ff7426 0%, #ff9a56 100%);
    --shadow:     0 10px 40px rgba(98, 84, 231, 0.12);
    --shadow-lg:  0 20px 60px rgba(98, 84, 231, 0.18);
    --radius:     12px;
    --radius-lg:  20px;
    --transition: all 0.3s ease;
}

/* ======================== BASE ======================== */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    font-family: 'Rubik', sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: var(--text);
    background: var(--white);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Nunito', sans-serif;
    font-weight: 800;
    color: var(--dark);
    line-height: 1.3;
}

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

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

/* ======================== TOPBAR ======================== */
.topbar {
    background: var(--dark-deep);
    padding: 8px 0;
    font-size: 13px;
}

.topbar-left a, .topbar-right a {
    color: rgba(255,255,255,0.8);
    margin-right: 20px;
    font-size: 13px;
    transition: var(--transition);
}

.topbar-left a i, .topbar-right a i { margin-right: 5px; color: var(--secondary); }

.topbar-left a:hover, .topbar-right a:hover { color: var(--white); }

.topbar-right { display: flex; align-items: center; justify-content: flex-end; gap: 6px; flex-wrap: wrap; }

.topbar-right a { margin-right: 0; padding: 2px 8px; border-radius: 4px; }

.whatsapp-top { background: #25d366 !important; color: white !important; }
.whatsapp-top:hover { background: #1ebe5c !important; }

/* ======================== NAVBAR ======================== */
#mainNav {
    background: var(--white);
    padding: 14px 0;
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
    transition: var(--transition);
}

#mainNav.scrolled {
    padding: 10px 0;
    box-shadow: 0 4px 30px rgba(98, 84, 231, 0.15);
}

.navbar-brand { text-decoration: none; }

.logo-text { line-height: 1.1; }

.logo-clouds {
    font-family: 'Nunito', sans-serif;
    font-weight: 900;
    font-size: 28px;
    color: var(--primary);
    letter-spacing: -1px;
}

.logo-11 {
    font-family: 'Nunito', sans-serif;
    font-weight: 900;
    font-size: 28px;
    color: var(--secondary);
}

.logo-text small {
    display: block;
    font-size: 9px;
    font-weight: 600;
    color: var(--text-light);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-top: -2px;
}

.navbar-toggler {
    border: 2px solid var(--primary);
    padding: 6px 10px;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%236254e7' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.nav-link {
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
    font-size: 15px;
    color: var(--dark) !important;
    padding: 8px 14px !important;
    border-radius: 8px;
    position: relative;
    transition: var(--transition);
}

.nav-link:hover, .nav-link.active {
    color: var(--primary) !important;
    background: rgba(98,84,231,0.06);
}

.nav-cta {
    background: var(--gradient) !important;
    color: var(--white) !important;
    padding: 10px 24px !important;
    border-radius: 25px !important;
    font-weight: 700;
    border: none;
    box-shadow: 0 4px 15px rgba(98,84,231,0.3);
}

.nav-cta:hover {
    background: var(--primary-dark) !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(98,84,231,0.4);
}

/* ======================== BUTTONS ======================== */
.btn-primary {
    background: var(--gradient);
    border: none;
    border-radius: 25px;
    padding: 12px 32px;
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
    font-size: 15px;
    color: var(--white);
    box-shadow: 0 4px 15px rgba(98,84,231,0.3);
    transition: var(--transition);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #4b3ecf 0%, #7e40b8 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(98,84,231,0.4);
    color: var(--white);
}

.btn-secondary {
    background: var(--gradient-orange);
    border: none;
    border-radius: 25px;
    padding: 12px 32px;
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
    font-size: 15px;
    color: var(--white);
    box-shadow: 0 4px 15px rgba(255,116,38,0.3);
    transition: var(--transition);
}

.btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255,116,38,0.4);
    color: var(--white);
}

.btn-outline-primary {
    background: transparent;
    border: 2px solid var(--primary);
    border-radius: 25px;
    padding: 10px 30px;
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
    font-size: 15px;
    color: var(--primary);
    transition: var(--transition);
}

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

.btn-outline-light {
    background: transparent;
    border: 2px solid rgba(255,255,255,0.6);
    border-radius: 25px;
    padding: 10px 30px;
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
    font-size: 15px;
    color: var(--white);
    transition: var(--transition);
}

.btn-outline-light:hover {
    background: rgba(255,255,255,0.15);
    border-color: var(--white);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-lg { padding: 15px 40px; font-size: 16px; }

/* ======================== SECTION HEADINGS ======================== */
.section-tag {
    display: inline-block;
    background: rgba(98,84,231,0.1);
    color: var(--primary);
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 20px;
    margin-bottom: 16px;
}

.section-heading {
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 16px;
}

.section-heading span { color: var(--primary); }
.section-heading .orange { color: var(--secondary); }

.section-subheading {
    font-size: 17px;
    color: var(--text);
    max-width: 600px;
    margin: 0 auto 50px;
}

.section-divider {
    width: 60px;
    height: 4px;
    background: var(--gradient);
    border-radius: 2px;
    margin: 16px auto 30px;
}

section { padding: 90px 0; }

/* ======================== HERO - HOME ======================== */
.hero-section {
    min-height: 100vh;
    background: var(--dark-deep);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 120px 0 80px;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(98,84,231,0.3) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.hero-section::after {
    content: '';
    position: absolute;
    bottom: -20%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255,116,38,0.15) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(98,84,231,0.2);
    border: 1px solid rgba(98,84,231,0.4);
    color: #a89cff;
    font-size: 13px;
    font-weight: 600;
    padding: 8px 20px;
    border-radius: 25px;
    margin-bottom: 24px;
}

.hero-tag i { color: var(--secondary); }

.hero-title {
    font-size: clamp(36px, 5.5vw, 68px);
    font-weight: 900;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 24px;
}

.hero-title .highlight {
    color: var(--secondary);
    position: relative;
}

.hero-title .gradient-text {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 17px;
    color: rgba(255,255,255,0.75);
    line-height: 1.8;
    margin-bottom: 36px;
    max-width: 560px;
}

.hero-btns { display: flex; flex-wrap: wrap; gap: 16px; margin-bottom: 50px; }

.hero-stats {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

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

.hero-stat .number {
    font-family: 'Nunito', sans-serif;
    font-size: 32px;
    font-weight: 900;
    color: var(--white);
    line-height: 1;
}

.hero-stat .number span { color: var(--secondary); }

.hero-stat .label {
    font-size: 13px;
    color: rgba(255,255,255,0.6);
    margin-top: 4px;
}

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

.hero-card-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    max-width: 420px;
    margin: 0 auto;
}

.hero-card {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-lg);
    padding: 28px 24px;
    text-align: center;
    backdrop-filter: blur(10px);
    transition: var(--transition);
}

.hero-card:hover {
    background: rgba(255,255,255,0.1);
    transform: translateY(-5px);
    border-color: rgba(98,84,231,0.5);
}

.hero-card-icon {
    width: 56px;
    height: 56px;
    background: var(--gradient);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px;
    font-size: 22px;
    color: var(--white);
}

.hero-card-icon.orange { background: var(--gradient-orange); }
.hero-card-icon.teal { background: linear-gradient(135deg, #26c6da, #00acc1); }
.hero-card-icon.green { background: linear-gradient(135deg, #43a047, #2e7d32); }

.hero-card h6 {
    color: var(--white);
    font-size: 14px;
    font-weight: 700;
    margin: 0;
}

.hero-card p {
    color: rgba(255,255,255,0.55);
    font-size: 12px;
    margin: 6px 0 0;
}

/* ======================== SERVICES SECTION ======================== */
.services-section { background: var(--light-bg); }

.service-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    height: 100%;
    border: 1px solid var(--border);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient);
    transform: scaleX(0);
    transition: var(--transition);
}

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

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.service-icon {
    width: 68px;
    height: 68px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    margin-bottom: 24px;
    transition: var(--transition);
}

.service-icon.purple { background: rgba(98,84,231,0.1); color: var(--primary); }
.service-icon.orange { background: rgba(255,116,38,0.1); color: var(--secondary); }
.service-icon.teal   { background: rgba(38,198,218,0.1); color: #26c6da; }
.service-icon.green  { background: rgba(67,160,71,0.1);  color: #43a047; }
.service-icon.pink   { background: rgba(236,64,122,0.1); color: #ec407a; }
.service-icon.blue   { background: rgba(33,150,243,0.1); color: #2196f3; }

.service-card:hover .service-icon.purple { background: var(--primary); color: white; }
.service-card:hover .service-icon.orange { background: var(--secondary); color: white; }
.service-card:hover .service-icon.teal   { background: #26c6da; color: white; }
.service-card:hover .service-icon.green  { background: #43a047; color: white; }
.service-card:hover .service-icon.pink   { background: #ec407a; color: white; }
.service-card:hover .service-icon.blue   { background: #2196f3; color: white; }

.service-card h4 {
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 12px;
}

.service-card p {
    font-size: 15px;
    color: var(--text);
    margin-bottom: 20px;
}

.service-link {
    color: var(--primary);
    font-weight: 700;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.service-link:hover { gap: 10px; }

/* ======================== WHY US / FEATURES ======================== */
.features-section { background: var(--white); }

.feature-item {
    display: flex;
    gap: 20px;
    margin-bottom: 32px;
}

.feature-icon {
    width: 52px;
    height: 52px;
    min-width: 52px;
    background: rgba(98,84,231,0.1);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--primary);
}

.feature-content h5 {
    font-size: 17px;
    font-weight: 800;
    margin-bottom: 6px;
}

.feature-content p {
    font-size: 15px;
    color: var(--text);
    margin: 0;
}

/* ======================== STATS SECTION ======================== */
.stats-section {
    background: var(--gradient);
    padding: 70px 0;
}

.stat-item { text-align: center; padding: 20px; }

.stat-number {
    font-family: 'Nunito', sans-serif;
    font-size: clamp(40px, 5vw, 60px);
    font-weight: 900;
    color: var(--white);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 16px;
    color: rgba(255,255,255,0.8);
    font-weight: 500;
}

/* ======================== CTA SECTION ======================== */
.cta-section {
    background: var(--dark-deep);
    padding: 90px 0;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 400px;
    background: radial-gradient(ellipse, rgba(98,84,231,0.2) 0%, transparent 70%);
    pointer-events: none;
}

.cta-section h2 {
    color: var(--white);
    font-size: clamp(28px, 4vw, 44px);
}

.cta-section p { color: rgba(255,255,255,0.7); font-size: 17px; }

/* ======================== QUOTE/TAGLINE SECTION ======================== */
.quote-section {
    background: var(--light-bg);
    padding: 60px 0;
    text-align: center;
}

.quote-text {
    font-family: 'Nunito', sans-serif;
    font-size: clamp(18px, 2.5vw, 26px);
    font-weight: 800;
    color: var(--dark);
    font-style: italic;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    padding: 0 40px;
}

.quote-text::before,
.quote-text::after {
    content: '"';
    font-size: 60px;
    color: var(--primary);
    opacity: 0.3;
    position: absolute;
    line-height: 1;
}

.quote-text::before { top: -10px; left: 0; }
.quote-text::after { bottom: -30px; right: 0; }

/* ======================== PAGE HERO (inner pages) ======================== */
.page-hero {
    background: var(--dark-deep);
    padding: 110px 0 70px;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(98,84,231,0.25) 0%, transparent 70%);
    pointer-events: none;
}

.page-hero-tag {
    display: inline-block;
    background: rgba(98,84,231,0.25);
    border: 1px solid rgba(98,84,231,0.5);
    color: #a89cff;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    padding: 7px 20px;
    border-radius: 25px;
    margin-bottom: 20px;
}

.page-hero h1 {
    color: var(--white);
    font-size: clamp(32px, 5vw, 56px);
    font-weight: 900;
    margin-bottom: 16px;
}

.page-hero p {
    color: rgba(255,255,255,0.7);
    font-size: 17px;
    max-width: 600px;
    margin: 0 auto;
}

.breadcrumb-nav {
    margin-top: 24px;
    display: flex;
    justify-content: center;
    gap: 8px;
    align-items: center;
    font-size: 14px;
}

.breadcrumb-nav a { color: rgba(255,255,255,0.6); }
.breadcrumb-nav a:hover { color: var(--secondary); }
.breadcrumb-nav .sep { color: rgba(255,255,255,0.3); }
.breadcrumb-nav .current { color: var(--secondary); }

/* ======================== PRICING CARDS ======================== */
.pricing-section { background: var(--light-bg); }

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

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.pricing-card.featured {
    background: var(--gradient);
    border-color: transparent;
    transform: scale(1.03);
    box-shadow: var(--shadow-lg);
}

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

.pricing-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--secondary);
    color: var(--white);
    font-size: 12px;
    font-weight: 700;
    padding: 5px 18px;
    border-radius: 20px;
    white-space: nowrap;
}

.pricing-name {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-light);
    margin-bottom: 12px;
}

.pricing-card.featured .pricing-name { color: rgba(255,255,255,0.7); }

.pricing-price {
    font-family: 'Nunito', sans-serif;
    font-size: 48px;
    font-weight: 900;
    color: var(--dark);
    line-height: 1;
    margin-bottom: 6px;
}

.pricing-card.featured .pricing-price { color: var(--white); }

.pricing-price sup { font-size: 24px; vertical-align: top; margin-top: 10px; }
.pricing-period { font-size: 14px; color: var(--text-light); margin-bottom: 24px; }
.pricing-card.featured .pricing-period { color: rgba(255,255,255,0.65); }

.pricing-desc {
    font-size: 15px;
    color: var(--text);
    margin-bottom: 28px;
    padding-bottom: 28px;
    border-bottom: 1px solid var(--border);
}

.pricing-card.featured .pricing-desc { color: rgba(255,255,255,0.8); border-bottom-color: rgba(255,255,255,0.2); }

.pricing-features { list-style: none; padding: 0; margin: 0 0 32px; }

.pricing-features li {
    padding: 8px 0;
    font-size: 15px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    border-bottom: 1px solid var(--border);
}

.pricing-card.featured .pricing-features li { border-bottom-color: rgba(255,255,255,0.15); color: rgba(255,255,255,0.9); }

.pricing-features li:last-child { border-bottom: none; }

.pricing-features li i {
    color: var(--primary);
    flex-shrink: 0;
    margin-top: 3px;
}

.pricing-card.featured .pricing-features li i { color: var(--secondary); }

.pricing-card.featured .btn-primary {
    background: var(--white) !important;
    color: var(--primary) !important;
}

.pricing-card.featured .btn-primary:hover {
    background: var(--secondary) !important;
    color: var(--white) !important;
}

/* ======================== PROCESS STEPS ======================== */
.process-section { background: var(--white); }

.process-step {
    display: flex;
    gap: 20px;
    margin-bottom: 36px;
    align-items: flex-start;
}

.step-number {
    width: 52px;
    height: 52px;
    min-width: 52px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-family: 'Nunito', sans-serif;
    font-weight: 900;
    font-size: 18px;
}

.step-content h5 {
    font-size: 17px;
    font-weight: 800;
    margin-bottom: 6px;
}

.step-content p {
    font-size: 15px;
    color: var(--text);
    margin: 0;
}

/* ======================== COMPARISON TABLE ======================== */
.comparison-section { background: var(--light-bg); }

.comparison-table {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
}

.comparison-table table { margin: 0; }

.comparison-table th {
    background: var(--gradient);
    color: white;
    font-family: 'Nunito', sans-serif;
    font-weight: 800;
    padding: 18px 24px;
    font-size: 15px;
    border: none;
}

.comparison-table th.market { background: rgba(59,54,99,0.9); }

.comparison-table td {
    padding: 16px 24px;
    border-bottom: 1px solid var(--border);
    font-size: 15px;
    vertical-align: middle;
}

.comparison-table tr:last-child td { border-bottom: none; }
.comparison-table tr:nth-child(even) td { background: var(--light-bg); }

.comparison-table .price-market { color: var(--text-light); text-decoration: line-through; }
.comparison-table .price-our { color: var(--primary); font-weight: 700; }
.comparison-table .service-name { font-weight: 600; color: var(--dark); }

/* ======================== CONTACT ======================== */
.contact-section { background: var(--white); }

.contact-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
    height: 100%;
}

.contact-info-item {
    display: flex;
    gap: 18px;
    margin-bottom: 28px;
    align-items: flex-start;
}

.contact-info-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    background: rgba(98,84,231,0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--primary);
}

.contact-info-icon.orange { background: rgba(255,116,38,0.1); color: var(--secondary); }

.contact-info-content h6 {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--text-light);
    margin-bottom: 4px;
}

.contact-info-content p, .contact-info-content a {
    font-size: 15px;
    color: var(--dark);
    font-weight: 500;
    margin: 0;
}

.contact-info-content a:hover { color: var(--primary); }

.contact-form .form-control,
.contact-form .form-select {
    border: 2px solid var(--border);
    border-radius: 10px;
    padding: 12px 16px;
    font-size: 15px;
    font-family: 'Rubik', sans-serif;
    color: var(--dark);
    background: var(--white);
    transition: var(--transition);
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(98,84,231,0.1);
    outline: none;
}

.contact-form label {
    font-weight: 600;
    font-size: 14px;
    color: var(--dark);
    margin-bottom: 6px;
}

.form-group { margin-bottom: 20px; }

.office-card {
    background: var(--light-bg);
    border-radius: var(--radius);
    padding: 24px;
    margin-bottom: 16px;
    border: 1px solid var(--border);
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.office-flag {
    font-size: 28px;
    line-height: 1;
    flex-shrink: 0;
}

.office-info h6 {
    font-size: 14px;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 4px;
}

.office-info p {
    font-size: 14px;
    color: var(--text);
    margin: 0;
}

/* ======================== LOCATIONS ======================== */
.locations-section { background: var(--light-bg); }

.location-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    text-align: center;
    border: 1px solid var(--border);
    height: 100%;
    transition: var(--transition);
}

.location-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow);
}

.location-flag { font-size: 48px; margin-bottom: 16px; }

.location-card h5 {
    font-size: 18px;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 8px;
}

.location-card p {
    font-size: 14px;
    color: var(--text);
    margin: 0;
}

.location-card .company-name {
    font-size: 13px;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 8px;
}

/* ======================== ALERT MESSAGES ======================== */
.alert {
    border: none;
    border-radius: var(--radius);
    padding: 16px 20px;
    font-size: 15px;
    margin-bottom: 24px;
}

.alert-success { background: rgba(67,160,71,0.1); color: #2e7d32; border-left: 4px solid #43a047; }
.alert-danger  { background: rgba(229,57,53,0.1);  color: #c62828; border-left: 4px solid #e53935; }

/* ======================== MIGRATION PAGE ======================== */
.migration-item {
    background: var(--white);
    border-radius: var(--radius);
    padding: 28px 24px;
    border: 1px solid var(--border);
    margin-bottom: 20px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
    transition: var(--transition);
}

.migration-item:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow);
    transform: translateX(6px);
}

.migration-num {
    font-family: 'Nunito', sans-serif;
    font-size: 32px;
    font-weight: 900;
    color: var(--primary);
    opacity: 0.2;
    line-height: 1;
    flex-shrink: 0;
    width: 50px;
}

.migration-content h5 { font-size: 17px; font-weight: 800; margin-bottom: 6px; }
.migration-content p  { font-size: 15px; color: var(--text); margin: 0; }

/* ======================== POLICY PAGES ======================== */
.policy-section { padding: 80px 0; }

.policy-content {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 50px 60px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
}

.policy-content h2 {
    font-size: 22px;
    color: var(--primary);
    margin-top: 36px;
    margin-bottom: 14px;
}

.policy-content p, .policy-content li {
    font-size: 15px;
    color: var(--text);
    line-height: 1.8;
}

/* ======================== FOOTER ======================== */
.footer { background: var(--dark-deep); }

.footer-top { padding: 80px 0 50px; }

.footer-logo .logo-clouds,
.footer-logo .logo-11 { font-size: 32px; }

.footer-widget > p {
    color: rgba(255,255,255,0.6);
    font-size: 15px;
    line-height: 1.8;
}

.footer-title {
    font-family: 'Nunito', sans-serif;
    font-weight: 800;
    font-size: 17px;
    color: var(--white);
    margin-bottom: 24px;
    position: relative;
    padding-bottom: 12px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 36px;
    height: 3px;
    background: var(--secondary);
    border-radius: 2px;
}

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

.footer-links li { margin-bottom: 10px; }

.footer-links a {
    color: rgba(255,255,255,0.6);
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.footer-links a:hover { color: var(--secondary); padding-left: 6px; }

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

.footer-contact li {
    display: flex;
    gap: 14px;
    margin-bottom: 16px;
    align-items: flex-start;
}

.footer-contact li i {
    color: var(--secondary);
    margin-top: 3px;
    flex-shrink: 0;
    width: 16px;
}

.footer-contact li span,
.footer-contact li a {
    color: rgba(255,255,255,0.7);
    font-size: 14px;
    line-height: 1.5;
}

.footer-contact li a:hover { color: var(--secondary); }

.footer-social { display: flex; gap: 10px; }

.footer-social a {
    width: 38px;
    height: 38px;
    background: rgba(255,255,255,0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.7);
    font-size: 14px;
    transition: var(--transition);
}

.footer-social a:hover { background: var(--primary); color: white; transform: translateY(-3px); }

.footer-bottom {
    background: rgba(0,0,0,0.2);
    padding: 20px 0;
    border-top: 1px solid rgba(255,255,255,0.06);
}

.footer-bottom p { color: rgba(255,255,255,0.5); font-size: 14px; margin: 0; }

.footer-bottom-links { display: flex; justify-content: flex-end; gap: 20px; flex-wrap: wrap; }

.footer-bottom-links a {
    color: rgba(255,255,255,0.5);
    font-size: 14px;
    transition: var(--transition);
}

.footer-bottom-links a:hover { color: var(--secondary); }

/* ======================== WHATSAPP FLOAT ======================== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 58px;
    height: 58px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: white;
    box-shadow: 0 4px 20px rgba(37,211,102,0.4);
    z-index: 999;
    transition: var(--transition);
}

.whatsapp-float:hover {
    background: #1ebe5c;
    transform: scale(1.1);
    color: white;
    box-shadow: 0 6px 30px rgba(37,211,102,0.5);
}

/* ======================== BACK TO TOP ======================== */
.back-to-top {
    position: fixed;
    bottom: 100px;
    right: 32px;
    width: 44px;
    height: 44px;
    background: var(--gradient);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 16px;
    cursor: pointer;
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(98,84,231,0.3);
}

.back-to-top.visible { opacity: 1; visibility: visible; }
.back-to-top:hover { transform: translateY(-3px); }

/* ======================== HIGHLIGHT BOX ======================== */
.highlight-box {
    background: var(--gradient);
    border-radius: var(--radius-lg);
    padding: 40px;
    color: white;
    position: relative;
    overflow: hidden;
}

.highlight-box::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 300px;
    height: 300px;
    background: rgba(255,255,255,0.06);
    border-radius: 50%;
}

.highlight-box h3 { color: white; }
.highlight-box p { color: rgba(255,255,255,0.85); }

/* ======================== CHECK LIST ======================== */
.check-list { list-style: none; padding: 0; margin: 0; }

.check-list li {
    padding: 8px 0;
    font-size: 15px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    border-bottom: 1px solid var(--border);
}

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

.check-list li::before {
    content: '\f058';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: var(--primary);
    flex-shrink: 0;
    margin-top: 2px;
}

/* ======================== BADGE ======================== */
.badge-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(98,84,231,0.1);
    color: var(--primary);
    font-size: 13px;
    font-weight: 600;
    padding: 5px 14px;
    border-radius: 20px;
    margin-right: 8px;
    margin-bottom: 8px;
}

/* ======================== RESPONSIVE ======================== */
@media (max-width: 991px) {
    section { padding: 70px 0; }
    .hero-section { min-height: auto; padding: 100px 0 60px; }
    .hero-card-grid { max-width: 340px; }
    .hero-visual { margin-top: 50px; }
    .pricing-card.featured { transform: scale(1); }
    .pricing-card.featured:hover { transform: translateY(-8px); }
    .topbar { display: none; }
    .policy-content { padding: 36px 28px; }
}

@media (max-width: 767px) {
    section { padding: 60px 0; }
    .hero-title { font-size: 36px; }
    .hero-btns { flex-direction: column; }
    .hero-btns .btn { width: 100%; text-align: center; }
    .hero-stats { gap: 24px; }
    .hero-card-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
    .hero-card { padding: 20px 16px; }
    .contact-card { padding: 28px 20px; }
    .footer-bottom-links { justify-content: center; }
    .footer-bottom p { text-align: center; }
    .whatsapp-float { bottom: 20px; right: 20px; }
    .back-to-top { bottom: 88px; right: 22px; }
}

@media (max-width: 576px) {
    .hero-card-grid { grid-template-columns: 1fr; max-width: 280px; }
    .stats-section .stat-number { font-size: 36px; }
}
