/* RadPad Roofing - Main Stylesheet
   Trust-First, Professional Roofing in Pinellas County, FL
*/

/* ===== CSS VARIABLES ===== */
:root {
    /* Brand Colors - Bold teal and warm copper/orange */
    --primary: #0d7377;
    --primary-dark: #095456;
    --primary-light: #14919b;
    --accent: #e07b39;
    --accent-dark: #c56a2d;
    --accent-light: #f4a460;
    
    /* Neutrals */
    --white: #ffffff;
    --off-white: #f8f9fa;
    --light-gray: #e9ecef;
    --gray: #6c757d;
    --dark-gray: #343a40;
    --charcoal: #212529;
    --black: #0a0a0a;
    
    /* Typography */
    --font-display: 'Bebas Neue', Impact, sans-serif;
    --font-heading: 'Montserrat', 'Segoe UI', sans-serif;
    --font-body: 'Open Sans', 'Segoe UI', sans-serif;
    
    /* Spacing */
    --section-padding: 100px 0;
    --container-width: 1200px;
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 20px rgba(0,0,0,0.12);
    --shadow-lg: 0 8px 40px rgba(0,0,0,0.16);
    --shadow-accent: 0 4px 20px rgba(224, 123, 57, 0.3);
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

/* ===== RESET & BASE ===== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    color: var(--charcoal);
    line-height: 1.7;
    background: var(--white);
    overflow-x: hidden;
}

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

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

ul, ol {
    list-style: none;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    color: var(--charcoal);
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
h4 { font-size: clamp(1.25rem, 2vw, 1.5rem); }

.display-font {
    font-family: var(--font-display);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

p {
    margin-bottom: 1rem;
}

.lead {
    font-size: 1.25rem;
    color: var(--gray);
}

/* ===== LAYOUT ===== */
.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: var(--section-padding);
}

.section--gray {
    background: var(--off-white);
}

.section--dark {
    background: var(--charcoal);
    color: var(--white);
}

.section--primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 32px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition-normal);
}

.btn--primary {
    background: var(--accent);
    color: var(--white);
}

.btn--primary:hover {
    background: var(--accent-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-accent);
}

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

.btn--secondary:hover {
    background: var(--primary);
    color: var(--white);
}

.btn--white {
    background: var(--white);
    color: var(--primary);
}

.btn--white:hover {
    background: var(--off-white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn--large {
    padding: 20px 48px;
    font-size: 1.1rem;
}

.btn svg {
    margin-left: 8px;
    width: 20px;
    height: 20px;
}

/* ===== HEADER & NAVIGATION ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--white);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
}

.header--scrolled {
    box-shadow: var(--shadow-md);
}

.header__top {
    background: var(--charcoal);
    color: var(--white);
    padding: 8px 0;
    font-size: 0.875rem;
}

.header__top-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.header__contact-info {
    display: flex;
    gap: 24px;
    align-items: center;
}

.header__contact-info a {
    display: flex;
    align-items: center;
    gap: 6px;
}

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

.header__social {
    display: flex;
    gap: 12px;
}

.header__social a {
    opacity: 0.8;
}

.header__social a:hover {
    opacity: 1;
    color: var(--accent);
}

.header__main {
    padding: 16px 0;
}

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

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

.logo__icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-family: var(--font-display);
    font-size: 1.5rem;
}

.logo__text {
    font-family: var(--font-display);
    font-size: 1.75rem;
    color: var(--primary);
    letter-spacing: 0.02em;
}

.logo__text span {
    color: var(--accent);
}

.nav {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav__list {
    display: flex;
    gap: 8px;
}

.nav__link {
    padding: 8px 16px;
    font-weight: 500;
    color: var(--dark-gray);
    position: relative;
}

.nav__link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: var(--transition-fast);
    transform: translateX(-50%);
}

.nav__link:hover,
.nav__link--active {
    color: var(--primary);
}

.nav__link:hover::after,
.nav__link--active::after {
    width: calc(100% - 32px);
}

/* Dropdown */
.nav__item--dropdown {
    position: relative;
}

.nav__dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    min-width: 220px;
    box-shadow: var(--shadow-lg);
    border-radius: 8px;
    padding: 8px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition-fast);
}

.nav__item--dropdown:hover .nav__dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav__dropdown-link {
    display: block;
    padding: 12px 20px;
    color: var(--dark-gray);
    font-size: 0.95rem;
}

.nav__dropdown-link:hover {
    background: var(--off-white);
    color: var(--primary);
}

.nav__cta {
    margin-left: 16px;
}

/* Mobile Menu Toggle */
.nav__toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
}

.nav__toggle span {
    width: 28px;
    height: 3px;
    background: var(--charcoal);
    border-radius: 2px;
    transition: var(--transition-fast);
}

/* ===== HERO SECTION ===== */
.hero {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    padding-top: 120px;
    background: linear-gradient(135deg, var(--charcoal) 0%, #1a1a2e 100%);
    overflow: hidden;
}

.hero__bg {
    position: absolute;
    inset: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><defs><linearGradient id="g" x1="0%" y1="0%" x2="100%" y2="100%"><stop offset="0%" style="stop-color:%230d7377;stop-opacity:0.1"/><stop offset="100%" style="stop-color:%23e07b39;stop-opacity:0.05"/></linearGradient></defs><polygon fill="url(%23g)" points="0,100 100,0 100,100"/></svg>') no-repeat center/cover;
    opacity: 0.8;
}

.hero__pattern {
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(13, 115, 119, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(224, 123, 57, 0.1) 0%, transparent 50%);
}

.hero__content {
    position: relative;
    z-index: 1;
    max-width: 700px;
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(224, 123, 57, 0.2);
    border: 1px solid rgba(224, 123, 57, 0.4);
    border-radius: 100px;
    color: var(--accent-light);
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 24px;
}

.hero__title {
    font-family: var(--font-display);
    font-size: clamp(3rem, 7vw, 5.5rem);
    color: var(--white);
    line-height: 1;
    margin-bottom: 24px;
}

.hero__title span {
    color: var(--accent);
}

.hero__subtitle {
    font-size: 1.35rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
    line-height: 1.6;
}

.hero__cta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero__stats {
    display: flex;
    gap: 48px;
    margin-top: 64px;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.hero__stat {
    text-align: center;
}

.hero__stat-number {
    font-family: var(--font-display);
    font-size: 3rem;
    color: var(--accent);
    line-height: 1;
}

.hero__stat-label {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-top: 8px;
}

/* ===== TRUST BADGES ===== */
.trust-bar {
    background: var(--white);
    padding: 32px 0;
    border-bottom: 1px solid var(--light-gray);
}

.trust-bar__content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 32px;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--gray);
}

.trust-badge__icon {
    width: 48px;
    height: 48px;
    background: var(--off-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
}

.trust-badge__text {
    font-size: 0.875rem;
    line-height: 1.4;
}

.trust-badge__text strong {
    display: block;
    color: var(--charcoal);
    font-size: 1rem;
}

/* ===== SERVICES SECTION ===== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
    margin-top: 48px;
}

.service-card {
    background: var(--white);
    border-radius: 16px;
    padding: 40px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--accent) 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition-normal);
}

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

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

.service-card__icon {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    color: var(--white);
    font-size: 2rem;
}

.service-card__title {
    font-size: 1.5rem;
    margin-bottom: 16px;
}

.service-card__desc {
    color: var(--gray);
    margin-bottom: 24px;
}

.service-card__link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    font-weight: 600;
}

.service-card__link:hover {
    color: var(--accent);
    gap: 12px;
}

/* ===== WHY CHOOSE US ===== */
.why-us {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.why-us__content {
    max-width: 540px;
}

.why-us__list {
    margin-top: 40px;
}

.why-us__item {
    display: flex;
    gap: 20px;
    margin-bottom: 32px;
}

.why-us__item-icon {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    background: rgba(13, 115, 119, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
}

.why-us__item-title {
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.why-us__item-desc {
    color: var(--gray);
    font-size: 0.95rem;
    margin: 0;
}

.why-us__image {
    position: relative;
}

.why-us__image-main {
    border-radius: 24px;
    box-shadow: var(--shadow-lg);
}

.why-us__image-badge {
    position: absolute;
    bottom: -24px;
    left: -24px;
    background: var(--accent);
    color: var(--white);
    padding: 24px;
    border-radius: 16px;
    text-align: center;
    box-shadow: var(--shadow-accent);
}

.why-us__image-badge-number {
    font-family: var(--font-display);
    font-size: 3rem;
    line-height: 1;
}

.why-us__image-badge-text {
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* ===== SERVICE AREAS ===== */
.areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
    margin-top: 48px;
}

.area-card {
    background: var(--white);
    padding: 32px;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
    border: 2px solid transparent;
}

.area-card:hover {
    border-color: var(--primary);
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.area-card__name {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 4px;
}

.area-card__zip {
    color: var(--gray);
    font-size: 0.875rem;
}

/* ===== TESTIMONIALS ===== */
.testimonials-slider {
    margin-top: 48px;
}

.testimonial-card {
    background: var(--white);
    padding: 48px;
    border-radius: 24px;
    box-shadow: var(--shadow-md);
    position: relative;
}

.testimonial-card__quote {
    position: absolute;
    top: 32px;
    left: 40px;
    font-family: serif;
    font-size: 8rem;
    color: var(--primary);
    opacity: 0.1;
    line-height: 1;
}

.testimonial-card__stars {
    display: flex;
    gap: 4px;
    margin-bottom: 24px;
    color: var(--accent);
}

.testimonial-card__text {
    font-size: 1.25rem;
    line-height: 1.8;
    margin-bottom: 32px;
    position: relative;
    z-index: 1;
}

.testimonial-card__author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.testimonial-card__avatar {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 700;
    font-size: 1.5rem;
}

.testimonial-card__name {
    font-weight: 600;
    margin-bottom: 4px;
}

.testimonial-card__location {
    color: var(--gray);
    font-size: 0.875rem;
}

/* ===== CTA SECTION ===== */
.cta-section {
    position: relative;
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    overflow: hidden;
}

.cta-section__pattern {
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(circle at 10% 90%, rgba(255,255,255,0.1) 0%, transparent 30%),
        radial-gradient(circle at 90% 10%, rgba(224, 123, 57, 0.2) 0%, transparent 30%);
}

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

.cta-section__title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: var(--white);
    margin-bottom: 24px;
}

.cta-section__text {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 40px;
}

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

/* ===== FOOTER ===== */
.footer {
    background: var(--charcoal);
    color: rgba(255, 255, 255, 0.8);
    padding-top: 80px;
}

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

.footer__brand {
    max-width: 320px;
}

.footer__logo {
    margin-bottom: 24px;
}

.footer__desc {
    margin-bottom: 24px;
    line-height: 1.8;
}

.footer__social {
    display: flex;
    gap: 12px;
}

.footer__social a {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
}

.footer__social a:hover {
    background: var(--accent);
    color: var(--white);
}

.footer__title {
    color: var(--white);
    font-size: 1.1rem;
    margin-bottom: 24px;
    font-weight: 600;
}

.footer__links li {
    margin-bottom: 12px;
}

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

.footer__contact-item {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
    align-items: flex-start;
}

.footer__contact-icon {
    flex-shrink: 0;
    width: 24px;
    color: var(--accent);
}

.footer__bottom {
    padding: 24px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.footer__copyright {
    font-size: 0.875rem;
}

.footer__legal {
    display: flex;
    gap: 24px;
    font-size: 0.875rem;
}

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

/* ===== PAGE HERO (Interior Pages) ===== */
.page-hero {
    padding: 180px 0 100px;
    background: linear-gradient(135deg, var(--charcoal) 0%, #1a1a2e 100%);
    position: relative;
    overflow: hidden;
}

.page-hero__pattern {
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(13, 115, 119, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(224, 123, 57, 0.1) 0%, transparent 50%);
}

.page-hero__content {
    position: relative;
    z-index: 1;
}

.page-hero__breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
}

.page-hero__breadcrumb a {
    color: rgba(255, 255, 255, 0.6);
}

.page-hero__breadcrumb a:hover {
    color: var(--accent);
}

.page-hero__title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: var(--white);
    margin-bottom: 16px;
}

.page-hero__subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
}

/* ===== SECTION HEADERS ===== */
.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 48px;
}

.section-header--left {
    text-align: left;
    margin-left: 0;
}

.section-tag {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(13, 115, 119, 0.1);
    color: var(--primary);
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-radius: 100px;
    margin-bottom: 16px;
}

.section-title {
    margin-bottom: 16px;
}

.section-subtitle {
    color: var(--gray);
    font-size: 1.1rem;
}

/* ===== CONTACT SECTION ===== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 64px;
}

.contact-info__item {
    display: flex;
    gap: 20px;
    margin-bottom: 32px;
}

.contact-info__icon {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
}

.contact-info__title {
    font-weight: 600;
    margin-bottom: 4px;
}

.contact-info__text {
    color: var(--gray);
    margin: 0;
}

.contact-info__text a {
    color: var(--primary);
}

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

.contact-form {
    background: var(--white);
    padding: 48px;
    border-radius: 24px;
    box-shadow: var(--shadow-lg);
}

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

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

.form-group--full {
    grid-column: span 2;
}

.form-label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 16px;
    border: 2px solid var(--light-gray);
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition-fast);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--primary);
}

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

/* ===== FAQ ===== */
.faq-list {
    max-width: 800px;
    margin: 48px auto 0;
}

.faq-item {
    background: var(--white);
    border-radius: 12px;
    margin-bottom: 16px;
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 32px;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--charcoal);
}

.faq-question:hover {
    color: var(--primary);
}

.faq-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    transition: var(--transition-fast);
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
    color: var(--accent);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: var(--transition-normal);
}

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

.faq-answer__content {
    padding: 0 32px 24px;
    color: var(--gray);
    line-height: 1.8;
}

/* ===== PROCESS SECTION ===== */
.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    margin-top: 48px;
    position: relative;
}

.process-grid::before {
    content: '';
    position: absolute;
    top: 48px;
    left: 15%;
    right: 15%;
    height: 2px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--accent) 100%);
    z-index: 0;
}

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

.process-step__number {
    width: 96px;
    height: 96px;
    background: var(--white);
    border: 3px solid var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-family: var(--font-display);
    font-size: 2.5rem;
    color: var(--primary);
    box-shadow: var(--shadow-md);
}

.process-step__title {
    font-size: 1.1rem;
    margin-bottom: 12px;
}

.process-step__desc {
    color: var(--gray);
    font-size: 0.95rem;
}

/* ===== UTILITIES ===== */
.text-center { text-align: center; }
.text-primary { color: var(--primary); }
.text-accent { color: var(--accent); }
.text-white { color: var(--white); }
.text-gray { color: var(--gray); }

.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 32px; }
.mt-5 { margin-top: 48px; }

.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.mb-4 { margin-bottom: 32px; }
.mb-5 { margin-bottom: 48px; }

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

.animate-fadeInUp {
    animation: fadeInUp 0.6s ease forwards;
}

.animate-delay-1 { animation-delay: 0.1s; }
.animate-delay-2 { animation-delay: 0.2s; }
.animate-delay-3 { animation-delay: 0.3s; }
.animate-delay-4 { animation-delay: 0.4s; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .why-us {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .why-us__image {
        order: -1;
    }
    
    .footer__grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .process-grid::before {
        display: none;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 64px 0;
    }
    
    .header__top {
        display: none;
    }
    
    .nav__list,
    .nav__cta {
        display: none;
    }
    
    .nav__toggle {
        display: flex;
    }
    
    .hero {
        min-height: auto;
        padding: 140px 0 80px;
    }
    
    .hero__stats {
        gap: 32px;
        flex-wrap: wrap;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .footer__grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .form-group--full {
        grid-column: span 1;
    }
    
    .process-grid {
        grid-template-columns: 1fr;
    }
    
    .areas-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .hero__cta {
        flex-direction: column;
    }
    
    .btn--large {
        width: 100%;
    }
    
    .trust-bar__content {
        flex-direction: column;
        text-align: center;
    }
    
    .trust-badge {
        flex-direction: column;
        text-align: center;
    }
    
    .areas-grid {
        grid-template-columns: 1fr;
    }
}
