/* ===========================
   PATEL PARTH & CO - UNIQUE DESIGN
   Modern Financial Consultancy
   =========================== */

/* --- CSS Variables --- */
:root {
    --primary: #0F2B46;
    --primary-mid: #1A4068;
    --primary-light: #25567F;
    --accent: #E8A838;
    --accent-light: #F0C060;
    --accent-glow: rgba(232, 168, 56, 0.35);
    --gradient: linear-gradient(135deg, #E8A838, #F0C060, #E8A838);
    --gradient-hero: linear-gradient(160deg, #0F2B46 0%, #1A4068 50%, #0F2B46 100%);

    --bg: #FAFBFD;
    --bg-alt: #F0F2F7;
    --bg-card: #FFFFFF;
    --bg-dark: #0F2B46;

    --text: #1C1C2E;
    --text-mid: #4B5563;
    --text-light: #8896A6;
    --text-on-dark: #FFFFFF;
    --text-on-accent: #1C1C2E;

    --border: #E2E6EE;
    --shadow-xs: 0 1px 3px rgba(15, 43, 70, 0.04);
    --shadow-sm: 0 2px 10px rgba(15, 43, 70, 0.06);
    --shadow-md: 0 8px 30px rgba(15, 43, 70, 0.08);
    --shadow-lg: 0 16px 50px rgba(15, 43, 70, 0.12);
    --shadow-glow: 0 8px 32px rgba(232, 168, 56, 0.25);

    --radius-sm: 10px;
    --radius-md: 14px;
    --radius-lg: 22px;
    --radius-xl: 32px;
    --radius-full: 100px;

    --ease: cubic-bezier(0.4, 0, 0.2, 1);
    --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
    --transition: 0.3s var(--ease);
    --font: 'DM Sans', sans-serif;
    --font-heading: 'Sora', sans-serif;
}

/* --- Reset --- */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: var(--font);
    background: var(--bg);
    color: var(--text);
    line-height: 1.7;
    overflow-x: hidden;
    transition: background 0.4s var(--ease), color 0.4s var(--ease);
}

a { text-decoration: none; color: inherit; transition: color var(--transition); }
img { max-width: 100%; display: block; }
ul { list-style: none; }

.container {
    max-width: 1220px;
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: 110px 0;
}

/* --- Gradient Text --- */
.gradient-text {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* --- Preloader --- */
#preloader {
    position: fixed;
    inset: 0;
    background: var(--bg);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.6s, visibility 0.6s;
}

#preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-ring {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    border: 3px solid var(--border);
    border-top-color: var(--accent);
    animation: spin 1s linear infinite;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.loader-inner {
    position: absolute;
    inset: 6px;
    border-radius: 50%;
    border: 3px solid transparent;
    border-bottom-color: var(--primary);
    animation: spin 1.5s linear infinite reverse;
}

.loader-text {
    font-family: var(--font-heading);
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--accent);
    letter-spacing: 1px;
    z-index: 1;
}

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

/* --- Cursor Glow --- */
.cursor-glow {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
    position: fixed;
    pointer-events: none;
    z-index: 0;
    transform: translate(-50%, -50%);
    transition: opacity 0.3s;
    opacity: 0;
}

.cursor-glow.active {
    opacity: 1;
}

@media (max-width: 768px) {
    .cursor-glow { display: none; }
}

/* --- Navigation --- */
#navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--gradient-hero);
    transition: all var(--transition);
    padding: 18px 0;
}

#navbar.scrolled {
    background: var(--gradient-hero);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    padding: 12px 0;
}

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

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

.logo-mark {
    width: 46px;
    height: 46px;
    background: var(--gradient-hero);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1px;
    position: relative;
    overflow: hidden;
}

.logo-mark::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent 40%, rgba(232, 168, 56, 0.3));
    border-radius: inherit;
}

.logo-mark span {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 0.85rem;
    color: #fff;
    z-index: 1;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-name {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.05rem;
    line-height: 1.2;
    color: #FFFFFF;
}

.logo-sub {
    font-size: 0.65rem;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 500;
}

/* Logo Image */
.logo-img {
    height: 48px;
    width: auto;
    object-fit: contain;
}

/* Nav Menu */
.nav-menu {
    display: flex;
    gap: 4px;
}

.nav-link {
    padding: 8px 16px;
    border-radius: var(--radius-full);
    font-size: 0.88rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.75);
    transition: all var(--transition);
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: #FFFFFF;
    background: rgba(255, 255, 255, 0.1);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--accent);
}

/* Nav Actions */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-cta {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 22px;
    background: var(--gradient);
    color: var(--text-on-accent);
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 0.85rem;
    transition: all var(--transition);
    box-shadow: var(--shadow-glow);
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(232, 168, 56, 0.35);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.hamburger span {
    width: 24px;
    height: 2.5px;
    background: #FFFFFF;
    border-radius: 2px;
    transition: all var(--transition);
}

.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 30px;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    border: none;
    transition: all var(--transition);
    white-space: nowrap;
    font-family: var(--font);
}

.btn-glow {
    background: var(--gradient);
    color: var(--text-on-accent);
    box-shadow: var(--shadow-glow);
}

.btn-glow:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 44px rgba(232, 168, 56, 0.4);
}

.btn-ghost {
    background: transparent;
    color: var(--text);
    border: 2px solid var(--border);
}

.btn-ghost:hover {
    border-color: var(--accent);
    color: var(--accent);
    transform: translateY(-3px);
}

.btn-white {
    background: #FFFFFF;
    color: var(--primary);
    font-weight: 700;
}

.btn-white:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.btn-wa {
    background: #25D366;
    color: #fff;
}

.btn-wa:hover {
    background: #20BD5A;
    transform: translateY(-3px);
}

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

/* --- Tag Label --- */
.tag-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 18px;
    background: var(--accent-glow);
    color: var(--accent);
    border-radius: var(--radius-full);
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 18px;
    border: 1px solid rgba(232, 168, 56, 0.15);
}

/* --- Section Intro --- */
.section-intro {
    text-align: center;
    max-width: 660px;
    margin: 0 auto 64px;
}

.sec-heading {
    font-family: var(--font-heading);
    font-size: 2.6rem;
    font-weight: 800;
    line-height: 1.25;
    margin-bottom: 16px;
    color: var(--text);
}

.section-sub {
    font-size: 1.05rem;
    color: var(--text-mid);
    line-height: 1.8;
}

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

.hero-particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.hero-particles .particle {
    position: absolute;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent);
    opacity: 0.15;
    animation: particleFloat 8s ease-in-out infinite;
}

@keyframes particleFloat {
    0%, 100% { transform: translateY(0) scale(1); opacity: 0.15; }
    50% { transform: translateY(-40px) scale(1.5); opacity: 0.3; }
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}

/* Hero Left */
.hero-pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 20px;
    background: var(--bg-alt);
    border: 1px solid var(--border);
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-mid);
    margin-bottom: 28px;
}

.pill-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #22C55E;
    animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
    0%, 100% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.4); }
    50% { box-shadow: 0 0 0 8px rgba(34, 197, 94, 0); }
}

.hero h1 {
    font-family: var(--font-heading);
    font-size: 3.4rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 22px;
    color: var(--text);
}

.hero-sub {
    font-size: 1.1rem;
    color: var(--text-mid);
    margin-bottom: 36px;
    line-height: 1.85;
    max-width: 520px;
}

.hero-btns {
    display: flex;
    gap: 14px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

/* Trust Row */
.hero-trust {
    display: flex;
    align-items: center;
    gap: 16px;
}

.trust-avatars {
    display: flex;
}

.trust-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--gradient-hero);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid var(--bg);
    margin-left: -10px;
}

.trust-avatar:first-child { margin-left: 0; }

.trust-avatar:last-child {
    background: var(--accent);
    color: var(--text-on-accent);
}

.trust-stars {
    display: flex;
    gap: 2px;
    color: var(--accent);
    font-size: 0.75rem;
    margin-bottom: 2px;
}

.trust-text span {
    font-size: 0.82rem;
    color: var(--text-light);
    font-weight: 500;
}

/* Hero Dashboard */
.hero-right {
    position: relative;
}

.hero-dashboard {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 28px;
    box-shadow: var(--shadow-lg);
    position: relative;
    z-index: 2;
}

.dash-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-mid);
}

.dash-dots {
    display: flex;
    gap: 5px;
}

.dash-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.dash-dots span:nth-child(1) { background: #FF6B6B; }
.dash-dots span:nth-child(2) { background: #FFC940; }
.dash-dots span:nth-child(3) { background: #51CF66; }

.dash-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-bottom: 24px;
}

.dash-stat {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    background: var(--bg-alt);
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
}

.dash-stat i {
    font-size: 1.3rem;
    color: var(--accent);
}

.dash-stat-num {
    display: block;
    font-weight: 800;
    font-size: 1.1rem;
    font-family: var(--font-heading);
    color: var(--text);
}

.dash-stat-label {
    font-size: 0.72rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.dash-chart {
    display: flex;
    align-items: flex-end;
    gap: 10px;
    height: 130px;
    padding: 0 8px;
    margin-bottom: 20px;
}

.chart-bar {
    flex: 1;
    height: var(--h);
    background: linear-gradient(to top, var(--primary), var(--accent));
    border-radius: 6px 6px 0 0;
    position: relative;
    animation: barGrow 1.5s var(--ease-bounce) forwards;
    transform-origin: bottom;
    transform: scaleY(0);
}

.chart-bar::after {
    content: attr(data-label);
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.6rem;
    color: var(--text-light);
    font-weight: 500;
}

@keyframes barGrow {
    to { transform: scaleY(1); }
}

.chart-bar:nth-child(1) { animation-delay: 0.1s; }
.chart-bar:nth-child(2) { animation-delay: 0.2s; }
.chart-bar:nth-child(3) { animation-delay: 0.3s; }
.chart-bar:nth-child(4) { animation-delay: 0.4s; }
.chart-bar:nth-child(5) { animation-delay: 0.5s; }
.chart-bar:nth-child(6) { animation-delay: 0.6s; }
.chart-bar:nth-child(7) { animation-delay: 0.7s; }

.dash-footer {
    display: flex;
    justify-content: center;
    gap: 24px;
    padding-top: 16px;
    border-top: 1px solid var(--border);
    font-size: 0.78rem;
    color: var(--text-light);
    font-weight: 500;
}

.dash-footer i {
    color: #22C55E;
    margin-right: 4px;
}

/* Hero Floating Badges */
.hero-float {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-full);
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--text);
    box-shadow: var(--shadow-md);
    z-index: 3;
    animation: badgeFloat 5s ease-in-out infinite;
}

.hero-float i {
    color: var(--accent);
}

.float-1 {
    top: -10px;
    right: 30px;
    animation-delay: 0s;
}

.float-2 {
    bottom: 20px;
    left: -20px;
    animation-delay: 2.5s;
}

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

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
}

.scroll-mouse {
    width: 26px;
    height: 42px;
    border: 2px solid var(--border);
    border-radius: 14px;
    display: flex;
    justify-content: center;
    padding-top: 8px;
}

.scroll-dot {
    width: 4px;
    height: 8px;
    background: var(--accent);
    border-radius: 4px;
    animation: scrollDown 2s ease-in-out infinite;
}

@keyframes scrollDown {
    0% { transform: translateY(0); opacity: 1; }
    100% { transform: translateY(14px); opacity: 0; }
}

/* ============================
   MARQUEE
   ============================ */
.marquee-section {
    background: var(--gradient-hero);
    padding: 18px 0;
    overflow: hidden;
}

.marquee-track {
    overflow: hidden;
    white-space: nowrap;
}

.marquee-content {
    display: inline-flex;
    align-items: center;
    gap: 32px;
    animation: marquee 30s linear infinite;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.marquee-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent);
    flex-shrink: 0;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ============================
   ABOUT SECTION
   ============================ */
.about {
    background: var(--bg);
}

.about-layout {
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    gap: 80px;
    align-items: center;
}

.about-image-block {
    background: var(--gradient-hero);
    border-radius: var(--radius-xl);
    padding: 50px 36px;
    text-align: center;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.about-image-block::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(232, 168, 56, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.about-icon-box {
    width: 80px;
    height: 80px;
    background: rgba(232, 168, 56, 0.2);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--accent);
    margin: 0 auto 20px;
    backdrop-filter: blur(8px);
}

.about-image-block h3 {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    margin-bottom: 10px;
}

.about-image-block > p {
    font-size: 0.92rem;
    opacity: 0.8;
    line-height: 1.7;
}

.about-year-badge {
    position: absolute;
    bottom: -24px;
    right: -16px;
    width: 110px;
    height: 110px;
    background: var(--accent);
    color: var(--text-on-accent);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-glow);
    z-index: 2;
}

.year-num {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
    line-height: 1;
}

.year-label {
    font-size: 0.58rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
    line-height: 1.3;
}

.about-mini-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-top: 40px;
}

.mini-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 20px;
    text-align: center;
    transition: all var(--transition);
}

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

.mini-card i {
    font-size: 1.3rem;
    color: var(--accent);
    margin-bottom: 8px;
}

.mini-card strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 800;
}

.mini-card span {
    font-size: 0.78rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* About Right */
.about-right .sec-heading {
    text-align: left;
}

.about-text {
    color: var(--text-mid);
    margin-bottom: 16px;
    line-height: 1.85;
}

.about-values {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: 32px 0;
}

.value-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.value-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent-glow);
    color: var(--accent);
    border-radius: var(--radius-sm);
    font-size: 1.1rem;
    border: 1px solid rgba(232, 168, 56, 0.15);
}

.value-item strong {
    display: block;
    margin-bottom: 4px;
    font-size: 1rem;
    color: var(--text);
}

.value-item p {
    font-size: 0.88rem;
    color: var(--text-light);
    line-height: 1.6;
}

/* ============================
   FOUNDER SECTION
   ============================ */
.founder {
    background: var(--bg-alt);
}

.founder-layout {
    display: grid;
    grid-template-columns: 380px 1fr;
    gap: 64px;
    align-items: center;
}

.founder-photo-wrap {
    position: relative;
    text-align: center;
}

.founder-photo {
    width: 280px;
    height: 320px;
    margin: 0 auto;
    border-radius: var(--radius-xl);
    overflow: hidden;
    background: var(--gradient-hero);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    border: 4px solid var(--border);
    box-shadow: var(--shadow-lg);
}

.founder-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.founder-initials {
    font-family: var(--font-heading);
    font-size: 5rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.15);
    letter-spacing: 4px;
    user-select: none;
}

.founder-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 20px;
    padding: 10px 24px;
    background: var(--gradient);
    color: var(--text-on-accent);
    border-radius: var(--radius-full);
    font-size: 0.82rem;
    font-weight: 700;
    box-shadow: var(--shadow-glow);
}

.founder-info h3 {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
    color: var(--text);
    margin-bottom: 4px;
}

.founder-role {
    display: inline-block;
    font-size: 0.92rem;
    color: var(--accent);
    font-weight: 600;
    margin-bottom: 20px;
}

.founder-info > p {
    color: var(--text-mid);
    font-size: 0.95rem;
    line-height: 1.85;
    margin-bottom: 14px;
}

.founder-highlights {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin: 28px 0;
}

.founder-highlight {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text);
    transition: all var(--transition);
}

.founder-highlight:hover {
    border-color: rgba(232, 168, 56, 0.3);
    box-shadow: var(--shadow-sm);
}

.founder-highlight i {
    color: var(--accent);
    font-size: 1rem;
    width: 20px;
    text-align: center;
}

.founder-socials {
    display: flex;
    gap: 10px;
}

.founder-socials a {
    width: 42px;
    height: 42px;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-mid);
    font-size: 0.92rem;
    transition: all var(--transition);
}

.founder-socials a:hover {
    background: var(--accent);
    color: var(--text-on-accent);
    border-color: var(--accent);
    transform: translateY(-3px);
    box-shadow: var(--shadow-glow);
}

@media (max-width: 1024px) {
    .founder-layout {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    .founder-info { text-align: left; }
    .founder-highlights { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
    .founder-photo {
        width: 220px;
        height: 260px;
    }
    .founder-info h3 { font-size: 1.6rem; }
    .founder-highlights { grid-template-columns: 1fr; }
    .founder-socials { justify-content: flex-start; }
}

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

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

.service-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 36px 30px;
    transition: all 0.4s var(--ease);
    position: relative;
    overflow: hidden;
}

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

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(232, 168, 56, 0.2);
}

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

.service-number {
    position: absolute;
    top: 20px;
    right: 24px;
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--border);
    line-height: 1;
}

.service-icon-wrap {
    width: 58px;
    height: 58px;
    background: var(--accent-glow);
    color: var(--accent);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    margin-bottom: 20px;
    transition: all var(--transition);
    border: 1px solid rgba(232, 168, 56, 0.15);
}

.service-card:hover .service-icon-wrap {
    background: var(--gradient);
    color: var(--text-on-accent);
    box-shadow: var(--shadow-glow);
    border-color: transparent;
}

.service-card h3 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text);
}

.service-card > p {
    font-size: 0.88rem;
    color: var(--text-mid);
    line-height: 1.7;
    margin-bottom: 16px;
}

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

.service-list li {
    padding: 4px 0;
    font-size: 0.84rem;
    color: var(--text-mid);
    display: flex;
    align-items: center;
    gap: 8px;
}

.service-list li::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent);
    flex-shrink: 0;
}

.service-cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--accent);
    transition: all var(--transition);
}

.service-cta:hover {
    gap: 12px;
}

/* ============================
   WHY US / STATS
   ============================ */
.why-us {
    background: var(--bg);
}

.stats-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 64px;
}

.stat-card {
    text-align: center;
    padding: 36px 20px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}

.stat-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient);
    transform: scaleX(0);
    transition: transform 0.4s var(--ease);
}

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

.stat-card:hover::after {
    transform: scaleX(1);
}

.stat-icon {
    width: 52px;
    height: 52px;
    margin: 0 auto 16px;
    background: var(--accent-glow);
    color: var(--accent);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.stat-num {
    font-family: var(--font-heading);
    font-size: 2.4rem;
    font-weight: 800;
    color: var(--text);
    display: inline;
}

.stat-suffix {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--accent);
    display: inline;
}

.stat-label {
    font-size: 0.82rem;
    color: var(--text-light);
    margin-top: 6px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

/* Features Row */
.features-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.feature-card {
    text-align: center;
    padding: 36px 24px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    transition: all var(--transition);
}

.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: rgba(232, 168, 56, 0.2);
}

.feature-icon-wrap {
    width: 60px;
    height: 60px;
    margin: 0 auto 18px;
    background: var(--gradient-hero);
    color: #fff;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    transition: all var(--transition);
}

.feature-card:hover .feature-icon-wrap {
    transform: scale(1.1) rotate(-5deg);
    box-shadow: var(--shadow-glow);
}

.feature-card h3 {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text);
}

.feature-card p {
    font-size: 0.88rem;
    color: var(--text-mid);
    line-height: 1.7;
}

/* ============================
   TESTIMONIALS
   ============================ */
.testimonials {
    background: var(--bg-alt);
}

.testimonial-slider {
    max-width: 900px;
    margin: 0 auto;
    overflow: hidden;
}

.testimonial-track {
    display: flex;
    transition: transform 0.5s var(--ease);
}

.testimonial-card {
    min-width: 100%;
    padding: 48px 50px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    text-align: center;
    position: relative;
}

.testi-quote {
    font-size: 2rem;
    color: var(--accent);
    margin-bottom: 16px;
    opacity: 0.4;
}

.testi-stars {
    display: flex;
    justify-content: center;
    gap: 3px;
    color: var(--accent);
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.testimonial-card > p {
    font-size: 1.08rem;
    color: var(--text-mid);
    line-height: 1.85;
    max-width: 600px;
    margin: 0 auto 28px;
    font-style: italic;
}

.testi-author {
    display: flex;
    align-items: center;
    gap: 14px;
    justify-content: center;
}

.testi-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--gradient-hero);
    color: #fff;
    font-size: 0.85rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testi-author strong {
    display: block;
    font-size: 1rem;
    color: var(--text);
}

.testi-author span {
    font-size: 0.82rem;
    color: var(--text-light);
}

.slider-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 32px;
}

.slider-btn {
    width: 44px;
    height: 44px;
    border: 1px solid var(--border);
    border-radius: 50%;
    background: var(--bg-card);
    color: var(--text-mid);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    transition: all var(--transition);
}

.slider-btn:hover {
    background: var(--accent);
    color: var(--text-on-accent);
    border-color: var(--accent);
    box-shadow: var(--shadow-glow);
}

.slider-dots {
    display: flex;
    gap: 8px;
}

.slider-dots .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--border);
    cursor: pointer;
    transition: all var(--transition);
}

.slider-dots .dot.active {
    background: var(--accent);
    transform: scale(1.2);
}

/* ============================
   CTA BANNER
   ============================ */
.cta-banner {
    padding: 0;
}

.cta-box {
    background: var(--gradient-hero);
    border-radius: var(--radius-xl);
    padding: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    margin: -40px 24px 0;
    position: relative;
    z-index: 2;
    overflow: hidden;
}

.cta-box::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(232, 168, 56, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.cta-content h2 {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 10px;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 1rem;
    max-width: 440px;
}

.cta-buttons {
    display: flex;
    gap: 14px;
    flex-shrink: 0;
}

/* ============================
   CONTACT
   ============================ */
.contact {
    background: var(--bg);
    padding-top: 140px;
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 48px;
    align-items: start;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.info-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 22px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    transition: all var(--transition);
}

.info-card:hover {
    border-color: rgba(232, 168, 56, 0.3);
    box-shadow: var(--shadow-sm);
}

.info-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    background: var(--accent-glow);
    color: var(--accent);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

.info-card h4 {
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 2px;
    color: var(--text);
}

.info-card a,
.info-card p {
    font-size: 0.88rem;
    color: var(--text-mid);
}

.info-card a:hover {
    color: var(--accent);
}

/* Contact Form */
.contact-form {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 40px;
}

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

.form-field {
    margin-bottom: 18px;
}

.form-field label {
    display: block;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-field input,
.form-field select,
.form-field textarea {
    width: 100%;
    padding: 13px 18px;
    background: var(--bg-alt);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    font-family: var(--font);
    font-size: 0.92rem;
    color: var(--text);
    transition: all var(--transition);
    outline: none;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px var(--accent-glow);
}

.form-field textarea {
    resize: vertical;
    min-height: 100px;
}

/* ============================
   FOOTER
   ============================ */
.footer {
    background: var(--gradient-hero);
    color: rgba(255, 255, 255, 0.85);
    padding: 80px 0 0;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand p {
    margin-top: 16px;
    font-size: 0.9rem;
    line-height: 1.7;
    opacity: 0.75;
    max-width: 300px;
}

.footer-brand .logo-name {
    color: #fff;
}

.footer-socials {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.footer-socials a {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    transition: all var(--transition);
}

.footer-socials a:hover {
    background: var(--accent);
    color: var(--text-on-accent);
    border-color: var(--accent);
    transform: translateY(-3px);
}

.footer-col h4 {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
}

.footer-col a {
    display: block;
    padding: 5px 0;
    font-size: 0.88rem;
    opacity: 0.7;
    transition: all var(--transition);
}

.footer-col a:hover {
    opacity: 1;
    color: var(--accent);
    padding-left: 6px;
}

.footer-contact-row {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 5px 0;
    font-size: 0.88rem;
    opacity: 0.7;
}

.footer-contact-row i {
    color: var(--accent);
    width: 16px;
}

.footer-contact-row a:hover {
    color: var(--accent);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
    font-size: 0.82rem;
    opacity: 0.6;
}

.footer-bottom .fa-heart {
    color: #FF6B6B;
}

/* ============================
   BACK TO TOP
   ============================ */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 48px;
    height: 48px;
    background: var(--gradient);
    color: var(--text-on-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    box-shadow: var(--shadow-glow);
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all var(--transition);
}

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

.back-to-top:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(232, 168, 56, 0.4);
}

/* ============================
   WHATSAPP FLOAT
   ============================ */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 56px;
    height: 56px;
    background: #25D366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.35);
    z-index: 99;
    transition: all var(--transition);
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 10px 36px rgba(37, 211, 102, 0.5);
}

.wa-tooltip {
    position: absolute;
    left: 68px;
    background: #fff;
    color: #333;
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    font-size: 0.8rem;
    font-weight: 600;
    white-space: nowrap;
    box-shadow: var(--shadow-md);
    opacity: 0;
    transform: translateX(-10px);
    transition: all var(--transition);
    pointer-events: none;
}

.whatsapp-float:hover .wa-tooltip {
    opacity: 1;
    transform: translateX(0);
}

/* ============================
   ANIMATIONS
   ============================ */
[data-animate] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

[data-animate="fade-right"] {
    transform: translateX(-40px);
}

[data-animate="fade-left"] {
    transform: translateX(40px);
}

[data-animate].animate-in {
    opacity: 1;
    transform: translate(0, 0);
}

/* ============================
   RESPONSIVE
   ============================ */
@media (max-width: 1024px) {
    .hero-grid,
    .about-layout { grid-template-columns: 1fr; gap: 48px; }
    .hero h1 { font-size: 2.8rem; }
    .sec-heading { font-size: 2.2rem; }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .stats-row { grid-template-columns: repeat(2, 1fr); }
    .features-row { grid-template-columns: repeat(2, 1fr); }
    .footer-top { grid-template-columns: 1fr 1fr; gap: 36px; }
    .cta-box { flex-direction: column; text-align: center; padding: 44px 32px; }
    .cta-buttons { justify-content: center; flex-wrap: wrap; }
    .contact-layout { grid-template-columns: 1fr; }
    .hero-right { max-width: 500px; margin: 0 auto; }
}

@media (max-width: 768px) {
    .section { padding: 80px 0; }
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 75%;
        max-width: 320px;
        height: 100vh;
        height: 100dvh;
        background: #FFFFFF;
        flex-direction: column;
        padding: 100px 32px 32px;
        box-shadow: -5px 0 30px rgba(0, 0, 0, 0.3);
        transition: right 0.4s var(--ease);
        z-index: 1001;
        gap: 4px;
        overflow-y: auto;
    }

    .nav-menu.active { right: 0; }

    .nav-link {
        padding: 14px 16px;
        font-size: 1rem;
        border-radius: var(--radius-sm);
        color: var(--text);
    }

    .nav-link:hover,
    .nav-link.active {
        color: var(--accent);
        background: rgba(232, 168, 56, 0.08);
    }

    .hamburger { display: flex; z-index: 1002; position: relative; }
    .nav-cta span { display: none; }
    .nav-cta { width: 42px; height: 42px; padding: 0; justify-content: center; border-radius: var(--radius-sm); }

    .hero { padding: 80px 0 40px; min-height: auto; }
    .hero h1 { font-size: 2rem; }
    .hero-sub { font-size: 0.95rem; }
    .hero-pill { margin-bottom: 18px; }
    .hero-btns { margin-bottom: 32px; }
    .hero-dashboard { padding: 20px; }
    .dash-chart { height: 100px; }
    .sec-heading { font-size: 1.8rem; }

    .services-grid { grid-template-columns: 1fr; }
    .stats-row { grid-template-columns: 1fr 1fr; }
    .features-row { grid-template-columns: 1fr; }
    .footer-top { grid-template-columns: 1fr; }

    .form-row { grid-template-columns: 1fr; }
    .contact-form { padding: 28px 20px; }

    .cta-box { margin: -30px 16px 0; padding: 36px 24px; }
    .contact { padding-top: 100px; }

    .float-2 { display: none; }
}

@media (max-width: 480px) {
    .hero { padding: 70px 0 30px; }
    .hero h1 { font-size: 1.7rem; }
    .sec-heading { font-size: 1.5rem; }
    .hero-trust { flex-direction: column; align-items: flex-start; gap: 10px; }
    .about-mini-cards { grid-template-columns: 1fr; }
    .cta-buttons { flex-direction: column; width: 100%; }
    .cta-buttons .btn { justify-content: center; }
}

/* ===========================
   SERVICE DETAIL PAGES
   =========================== */

/* Service Hero */
.service-hero {
    background: var(--gradient-hero);
    padding: 140px 0 60px;
    position: relative;
    overflow: hidden;
}

.service-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at 30% 50%, rgba(232, 168, 56, 0.08) 0%, transparent 60%);
    pointer-events: none;
}

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

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--accent);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 20px;
    transition: var(--transition);
}

.back-link:hover {
    gap: 12px;
    color: var(--accent-light);
}

.service-hero .tag-label {
    display: inline-block;
    background: rgba(232, 168, 56, 0.15);
    color: var(--accent);
    padding: 6px 16px;
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.service-hero h1 {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 800;
    color: var(--text-on-dark);
    line-height: 1.2;
    margin-bottom: 12px;
}

.service-hero p {
    color: var(--text-light);
    font-size: 1.15rem;
    max-width: 500px;
}

/* Service Detail Section */
.service-detail {
    padding: 80px 0 60px;
}

/* Detail Intro */
.detail-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.detail-icon {
    width: 72px;
    height: 72px;
    border-radius: var(--radius-md);
    background: var(--gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 1.6rem;
    color: var(--primary);
    box-shadow: var(--shadow-glow);
}

.detail-intro p {
    color: var(--text-mid);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 12px;
}

/* Detail Blocks */
.detail-block {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 40px;
    margin-bottom: 32px;
    transition: var(--transition);
}

.detail-block:hover {
    box-shadow: var(--shadow-md);
    border-color: rgba(232, 168, 56, 0.3);
}

.detail-block-header {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 28px;
}

.block-num {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
    color: var(--accent);
    line-height: 1;
    min-width: 48px;
}

.detail-block-header h2 {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 6px;
}

.detail-block-header p {
    color: var(--text-mid);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Detail Grid */
.detail-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 14px;
}

.detail-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 14px 18px;
    background: var(--bg-alt);
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.detail-item:hover {
    background: rgba(232, 168, 56, 0.08);
    transform: translateX(4px);
}

.detail-item i {
    color: var(--accent);
    font-size: 0.85rem;
    margin-top: 3px;
    flex-shrink: 0;
}

.detail-item span {
    color: var(--text);
    font-size: 0.95rem;
    font-weight: 500;
    line-height: 1.4;
}

/* Detail CTA */
.detail-cta {
    text-align: center;
    background: var(--gradient-hero);
    border-radius: var(--radius-xl);
    padding: 56px 40px;
    margin-top: 48px;
}

.detail-cta h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-on-dark);
    margin-bottom: 12px;
}

.detail-cta p {
    color: var(--text-light);
    font-size: 1.05rem;
    max-width: 500px;
    margin: 0 auto 28px;
}

.detail-cta-btns {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Service Page Responsive */
@media (max-width: 768px) {
    .service-hero {
        padding: 120px 0 40px;
    }

    .service-hero h1 {
        font-size: 2rem;
    }

    .detail-block {
        padding: 28px 20px;
    }

    .detail-block-header {
        flex-direction: column;
        gap: 10px;
    }

    .block-num {
        font-size: 1.5rem;
    }

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

    .detail-cta {
        padding: 40px 24px;
    }

    .detail-cta h3 {
        font-size: 1.4rem;
    }

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

@media (max-width: 480px) {
    .service-hero {
        padding: 100px 0 30px;
    }

    .service-hero h1 {
        font-size: 1.7rem;
    }

    .detail-block {
        padding: 22px 16px;
    }

    .detail-block-header h2 {
        font-size: 1.15rem;
    }

    .detail-item {
        padding: 12px 14px;
    }
}
