:root {
    /* Steel & Metal Palette */
    --steel-dark: #2c3e50;
    --steel: #4a5d6e;
    --steel-light: #6b8299;
    --steel-bright: #8fa4b8;
    
    /* Neutrals */
    --black: #1a1d21;
    --white: #f5f7f9;
    --off-white: #e8ecf0;
    --gray: #9aa5b1;
    
    /* Metallic accents */
    --chrome: linear-gradient(135deg, #d4d8dc 0%, #9aa5b1 50%, #c8cdd2 100%);
    --brushed-steel: linear-gradient(180deg, #5a6d7e 0%, #4a5d6e 50%, #3d4f5f 100%);
    
    /* CTA Orange */
    --accent: #e85d04;
    --accent-hover: #f97316;
    --accent-glow: rgba(232, 93, 4, 0.25);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Source Sans 3', sans-serif;
    background: var(--white);
    color: var(--black);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Utility */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 60px;
}

/* ==========================================
   FIXED HEADER
   ========================================== */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1100;
    padding: 16px 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--steel-dark);
    transition: all 0.3s ease;
}

header.scrolled {
    background: rgba(44, 62, 80, 0.98);
    backdrop-filter: blur(20px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.15);
}

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

.logo-img {
    height: 40px;
    width: auto;
}

/* Hamburger Menu Button */
.nav-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
    gap: 5px;
    z-index: 1001;
}

.hamburger-line {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    transition: all 0.3s ease;
    transform-origin: center;
}

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

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

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

.header-login {
    color: var(--accent);
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.header-login:hover {
    color: var(--accent-hover);
}

.header-cta {
    padding: 12px 24px;
    font-size: 12px;
}

/* ==========================================
   DRAWER NAVIGATION
   ========================================== */
.drawer {
    position: fixed;
    top: 0;
    left: 0;
    width: 280px;
    height: 100vh;
    background: var(--black);
    z-index: 999;
    transform: translateX(-100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
}

.drawer.open {
    transform: translateX(0);
}

.drawer-content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    padding: 100px 32px 40px;
}

.drawer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.drawer-links a {
    display: block;
    padding: 16px 20px;
    color: var(--steel-bright);
    text-decoration: none;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 24px;
    letter-spacing: 2px;
    border-left: 3px solid transparent;
    transition: all 0.3s ease;
}

.drawer-links a:hover,
.drawer-links a.active {
    color: var(--white);
    background: rgba(255, 255, 255, 0.05);
    border-left-color: var(--accent);
}

.drawer-footer {
    border-top: 1px solid var(--steel-dark);
    padding-top: 24px;
}

.drawer-login {
    display: block;
    color: var(--accent);
    text-decoration: none;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 20px;
    letter-spacing: 2px;
    margin-bottom: 24px;
    transition: color 0.3s ease;
}

.drawer-login:hover {
    color: var(--accent-hover);
}

.drawer-logo {
    margin-bottom: 16px;
}

.drawer-logo-img {
    height: 32px;
    width: auto;
    opacity: 0.6;
}

.drawer-copy {
    color: var(--steel);
    font-size: 12px;
}

/* Drawer Overlay */
.drawer-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.drawer-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Body state when drawer is open */
body.drawer-open {
    overflow: hidden;
}

/* ==========================================
   MAIN CONTENT
   ========================================== */
main {
    position: relative;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--steel-dark) 0%, var(--steel) 50%, var(--steel-light) 100%);
    padding-top: 80px; /* Account for fixed header */
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse 60% 40% at 70% 20%, rgba(255,255,255,0.1) 0%, transparent 50%),
        radial-gradient(ellipse 40% 30% at 20% 80%, rgba(0,0,0,0.2) 0%, transparent 50%);
}

.hero-grid {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 80px 80px;
    mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, black 0%, transparent 80%);
}

/* Chain link pattern overlay */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: -10%;
    width: 60%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 5c-6.6 0-12 5.4-12 12 0 3.3 1.3 6.3 3.5 8.5L30 34l8.5-8.5c2.2-2.2 3.5-5.2 3.5-8.5 0-6.6-5.4-12-12-12zm0 18c-3.3 0-6-2.7-6-6s2.7-6 6-6 6 2.7 6 6-2.7 6-6 6z' fill='rgba(255,255,255,0.02)'/%3E%3C/svg%3E") repeat;
    opacity: 0.5;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
}

.hero-label {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--off-white);
    margin-bottom: 24px;
    opacity: 0;
    animation: fadeSlideUp 0.8s ease 0.2s forwards;
}

.hero-label::before {
    content: '';
    width: 40px;
    height: 2px;
    background: var(--accent);
}

.hero h1 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(48px, 8vw, 100px);
    line-height: 0.95;
    letter-spacing: -1px;
    margin-bottom: 28px;
    color: var(--white);
    opacity: 0;
    animation: fadeSlideUp 0.8s ease 0.4s forwards;
}

.hero h1 span {
    display: block;
    color: var(--accent);
}

.hero-text {
    font-size: 18px;
    font-weight: 300;
    color: var(--off-white);
    max-width: 520px;
    margin-bottom: 40px;
    opacity: 0;
    animation: fadeSlideUp 0.8s ease 0.6s forwards;
}

.hero-actions {
    display: flex;
    gap: 24px;
    align-items: center;
    opacity: 0;
    animation: fadeSlideUp 0.8s ease 0.8s forwards;
}

.btn-primary {
    padding: 18px 40px;
    background: var(--accent);
    border: none;
    color: var(--white);
    font-family: 'Source Sans 3', sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

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

.btn-secondary {
    padding: 18px 40px;
    background: transparent;
    border: 2px solid rgba(255,255,255,0.3);
    color: var(--white);
    font-family: 'Source Sans 3', sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-secondary:hover {
    border-color: var(--white);
    background: rgba(255,255,255,0.1);
}

.hero-scroll {
    position: absolute;
    bottom: 48px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    color: var(--off-white);
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    opacity: 0;
    animation: fadeIn 1s ease 1.2s forwards;
}

.scroll-line {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, var(--accent), transparent);
    animation: scrollPulse 2s ease infinite;
}

/* Services Section */
.services {
    padding: 160px 0;
    background: var(--white);
    position: relative;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--off-white), transparent);
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 80px;
}

.section-label {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 16px;
}

.section-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(48px, 6vw, 72px);
    line-height: 1;
    letter-spacing: 2px;
    color: var(--steel-dark);
}

.section-desc {
    max-width: 400px;
    color: var(--steel);
    font-size: 16px;
    font-weight: 300;
    text-align: right;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--off-white);
    box-shadow: 0 4px 40px rgba(0,0,0,0.08);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* When a card is expanded */
.services-grid.has-expanded {
    grid-template-columns: 280px 1fr;
}

.service-card {
    background: var(--white);
    padding: 0;
    position: relative;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
}

.service-card-main {
    padding: 56px 40px;
    cursor: pointer;
    transition: all 0.4s ease;
    min-width: 0;
    flex-shrink: 0;
    width: 100%;
}

.service-card-main:hover {
    background: var(--off-white);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

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

/* Hide non-expanded cards when one is expanded */
.services-grid.has-expanded .service-card:not(.expanded) {
    display: none;
}

/* Expanded card takes full width */
.service-card.expanded {
    grid-column: 1 / -1;
    display: flex;
    flex-direction: row;
}

.service-card.expanded .service-card-main {
    width: 280px;
    flex-shrink: 0;
    border-right: 1px solid var(--off-white);
}

.service-number {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 72px;
    color: var(--off-white);
    line-height: 1;
    margin-bottom: 24px;
    transition: color 0.4s ease;
}

.service-card:hover .service-number,
.service-card.expanded .service-number {
    color: var(--accent);
}

.service-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 28px;
    letter-spacing: 2px;
    margin-bottom: 16px;
    color: var(--steel-dark);
}

.service-text {
    color: var(--steel);
    font-size: 15px;
    font-weight: 300;
    line-height: 1.7;
}

/* Pricing Panel (hidden by default) */
.service-pricing-panel {
    flex: 1;
    padding: 40px;
    background: var(--white);
    display: none;
    opacity: 0;
    transform: translateX(20px);
    transition: all 0.4s ease 0.1s;
}

.service-card.expanded .service-pricing-panel {
    display: block;
    opacity: 1;
    transform: translateX(0);
}

.pricing-panel-header {
    margin-bottom: 32px;
}

.pricing-panel-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 32px;
    letter-spacing: 2px;
    color: var(--steel-dark);
    margin-bottom: 8px;
}

.pricing-panel-subtitle {
    color: var(--steel);
    font-size: 14px;
    font-weight: 300;
}

.pricing-panel-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 24px;
}

.pricing-card {
    background: var(--off-white);
    padding: 28px 24px;
    border-radius: 4px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: all 0.3s ease;
}

.pricing-card:hover {
    background: var(--steel-dark);
}

.pricing-card:hover .pricing-tier,
.pricing-card:hover .pricing-range,
.pricing-card:hover .pricing-description {
    color: var(--white);
}

.pricing-tier {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 16px;
    letter-spacing: 2px;
    color: var(--steel);
    margin-bottom: 12px;
    transition: color 0.3s ease;
}

.pricing-range {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 24px;
    letter-spacing: 1px;
    color: var(--steel-dark);
    margin-bottom: 12px;
    transition: color 0.3s ease;
}

.pricing-description {
    color: var(--steel);
    font-size: 13px;
    font-weight: 400;
    line-height: 1.5;
    margin-bottom: 20px;
    flex: 1;
    transition: color 0.3s ease;
}

.pricing-cta {
    padding: 12px 20px;
    font-size: 11px;
}

.pricing-notes {
    padding-top: 20px;
    border-top: 1px solid var(--off-white);
}

.pricing-notes p {
    color: var(--steel);
    font-size: 12px;
    font-weight: 300;
    margin-bottom: 6px;
}

.pricing-notes p:last-child {
    margin-bottom: 0;
}

/* Work Section */
.work {
    padding: 160px 0;
    background: var(--steel-dark);
}

.work .section-title {
    color: var(--white);
}

.work .section-desc {
    color: var(--steel-bright);
}

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

.work-item {
    position: relative;
    overflow: hidden;
    background: var(--black);
    cursor: pointer;
    border-radius: 4px;
    display: flex;
    flex-direction: column;
}

.work-image-wrapper {
    padding: 20px 20px 0 20px;
    background: var(--steel);
}

.work-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 4px;
    transition: transform 0.4s ease;
}

.work-item:hover .work-image {
    transform: scale(1.02);
}

.work-content {
    padding: 28px;
    background: var(--black);
    flex: 1;
    display: flex;
    flex-direction: column;
}

.work-category {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 8px;
}

.work-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 26px;
    letter-spacing: 1px;
    color: var(--white);
    margin-bottom: 12px;
}

.work-description {
    font-size: 14px;
    font-weight: 300;
    line-height: 1.6;
    color: var(--steel-bright);
    flex: 1;
}

/* Remove old placeholder styles */
.work-placeholder {
    display: none;
}

/* Process Section */
.process {
    padding: 160px 0;
    background: var(--off-white);
    position: relative;
}

.process::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--steel-bright), transparent);
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: var(--steel-bright);
    margin-top: 80px;
    box-shadow: 0 4px 40px rgba(0,0,0,0.08);
}

.process-step {
    background: var(--white);
    padding: 48px 32px;
    position: relative;
    transition: all 0.4s ease;
}

.process-step:hover {
    background: var(--off-white);
}

.process-step::after {
    content: '';
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
    border-left: 8px solid var(--accent);
    opacity: 0.7;
}

.process-step:last-child::after {
    display: none;
}

.process-number {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 14px;
    letter-spacing: 2px;
    color: var(--accent);
    margin-bottom: 24px;
}

.process-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 24px;
    letter-spacing: 1px;
    margin-bottom: 12px;
    color: var(--steel-dark);
}

.process-text {
    color: var(--steel);
    font-size: 14px;
    font-weight: 300;
    line-height: 1.7;
}

/* Stats Section */
.stats {
    padding: 120px 0;
    background: linear-gradient(135deg, var(--steel) 0%, var(--steel-dark) 100%);
    position: relative;
    overflow: hidden;
}

/* Metallic sheen effect */
.stats::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent 40%,
        rgba(255,255,255,0.03) 45%,
        rgba(255,255,255,0.05) 50%,
        rgba(255,255,255,0.03) 55%,
        transparent 60%
    );
    animation: sheen 8s ease-in-out infinite;
}

@keyframes sheen {
    0%, 100% { transform: translateX(-30%) translateY(-30%); }
    50% { transform: translateX(30%) translateY(30%); }
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 60px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.stat-number {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 72px;
    color: var(--white);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--steel-bright);
}

/* Contact Section */
.contact {
    padding: 160px 0;
    background: var(--white);
    position: relative;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: start;
}

.contact-info h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(48px, 6vw, 64px);
    line-height: 1;
    letter-spacing: 2px;
    margin-bottom: 32px;
    color: var(--steel-dark);
}

.contact-info h2 span {
    color: var(--accent);
}

.contact-text {
    color: var(--steel);
    font-size: 18px;
    font-weight: 300;
    line-height: 1.8;
    margin-bottom: 48px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 16px;
}

.contact-icon {
    width: 48px;
    height: 48px;
    border: 1px solid var(--off-white);
    background: var(--off-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--steel-dark);
    transition: all 0.3s ease;
}

.contact-item:hover .contact-icon {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--white);
}

.contact-link {
    color: var(--steel-dark);
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s ease;
}

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

.contact-form {
    background: var(--off-white);
    padding: 56px;
}

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

.form-label {
    display: block;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--steel);
    margin-bottom: 12px;
}

.form-input {
    width: 100%;
    padding: 16px 0;
    background: transparent;
    border: none;
    border-bottom: 2px solid var(--steel-bright);
    color: var(--steel-dark);
    font-family: 'Source Sans 3', sans-serif;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.form-input:focus {
    outline: none;
    border-color: var(--accent);
}

.form-input::placeholder {
    color: var(--steel-light);
}

textarea.form-input {
    resize: none;
    height: 120px;
}

.form-submit {
    width: 100%;
    padding: 20px;
    background: var(--accent);
    border: none;
    color: var(--white);
    font-family: 'Source Sans 3', sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
}

.form-submit:hover {
    background: var(--accent-hover);
    box-shadow: 0 10px 40px var(--accent-glow);
}

/* Footer */
footer {
    padding: 60px 0;
    background: var(--steel-dark);
}

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

.footer-logo-img {
    display: flex;
    align-items: center;
}

.footer-logo-image {
    height: 36px;
    width: auto;
    opacity: 0.8;
}

.footer-copy {
    color: var(--steel-bright);
    font-size: 13px;
}

/* Login Modal */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.login-modal {
    background: var(--black);
    padding: 48px 48px 40px;
    width: 100%;
    max-width: 480px;
    position: relative;
    text-align: center;
    transform: translateY(20px);
    transition: transform 0.3s ease;
    border-radius: 4px;
}

.modal-overlay.active .login-modal {
    transform: translateY(0);
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    color: var(--steel-bright);
    cursor: pointer;
    padding: 8px;
    transition: color 0.3s ease;
}

.modal-close:hover {
    color: var(--white);
}

.modal-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 42px;
    letter-spacing: 3px;
    color: var(--accent);
    margin-bottom: 28px;
}

.modal-logo {
    margin-bottom: 36px;
}

.modal-logo-img {
    height: 56px;
    width: auto;
}

.modal-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 28px;
}

.modal-input {
    width: 100%;
    padding: 18px 24px;
    background: var(--steel-dark);
    border: 1px solid var(--steel);
    color: var(--white);
    font-family: 'Source Sans 3', sans-serif;
    font-size: 16px;
    text-align: center;
    transition: border-color 0.3s ease;
}

.modal-input::placeholder {
    color: var(--steel-bright);
}

.modal-input:focus {
    outline: none;
    border-color: var(--accent);
}

.modal-divider {
    color: var(--accent);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 28px;
}

.google-signin-btn {
    width: 100%;
    padding: 18px 24px;
    background: var(--white);
    border: none;
    color: var(--black);
    font-family: 'Source Sans 3', sans-serif;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transition: all 0.3s ease;
    margin-bottom: 36px;
}

.google-signin-btn:hover {
    background: var(--off-white);
    transform: translateY(-1px);
}

.google-icon {
    flex-shrink: 0;
}

.modal-description {
    color: var(--white);
    font-size: 16px;
    font-weight: 300;
    line-height: 1.6;
    margin-bottom: 16px;
}

.modal-features {
    color: var(--accent);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1px;
}

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

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

@keyframes scrollPulse {
    0%, 100% { opacity: 1; transform: scaleY(1); }
    50% { opacity: 0.5; transform: scaleY(0.8); }
}

/* Scroll animations */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 1024px) {
    .container {
        padding: 0 40px;
    }

    header {
        padding: 16px 24px;
    }

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

    .services-grid.has-expanded {
        grid-template-columns: 1fr;
    }

    .service-card.expanded {
        flex-direction: column;
    }

    .service-card.expanded .service-card-main {
        width: 100%;
        border-right: none;
        border-bottom: 1px solid var(--off-white);
    }

    .pricing-panel-grid {
        grid-template-columns: 1fr;
        max-width: 320px;
        margin-left: auto;
        margin-right: auto;
    }

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

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

    .process-step:nth-child(2)::after,
    .process-step:nth-child(4)::after {
        display: none;
    }

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

    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 60px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 24px;
    }

    header {
        padding: 12px 16px;
    }

    .logo-img {
        height: 32px;
    }

    .header-cta {
        padding: 10px 16px;
        font-size: 11px;
    }

    .drawer {
        width: 100%;
    }

    .hero {
        padding-top: 60px;
    }

    .hero h1 {
        font-size: clamp(40px, 10vw, 70px);
    }

    .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 24px;
    }

    .section-desc {
        text-align: left;
    }

    .service-card-main {
        padding: 40px 24px;
    }

    .service-number {
        font-size: 56px;
    }

    .service-title {
        font-size: 24px;
    }

    .service-pricing-panel {
        padding: 24px;
    }

    .pricing-panel-title {
        font-size: 26px;
    }

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

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

    .process-step::after {
        display: none;
    }

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

    .contact-form {
        padding: 32px;
    }

    .footer-content {
        flex-direction: column;
        gap: 24px;
        text-align: center;
    }
}