:root {
    --bg-primary: #FFFFFF;
    --bg-secondary: #F8F9FA;
    --bg-tertiary: #F1F3F5;
    --text-primary: #1A1A1B;
    --text-secondary: #52525B;
    --text-tertiary: #71717A;
    --accent-orange: #E85A24;
    --accent-orange-light: #FF6B35;
    --accent-blue: #2563EB;
    --accent-purple: #7C3AED;
    --accent-teal: #0D9488;
    --accent-gradient: linear-gradient(135deg, #E85A24 0%, #FF6B35 50%, #FF8F66 100%);
    --border-subtle: rgba(0, 0, 0, 0.06);
    --border-medium: rgba(0, 0, 0, 0.1);
    --glow-orange: rgba(232, 90, 36, 0.1);
    --glow-blue: rgba(37, 99, 235, 0.06);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Instrument Sans', -apple-system, sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 20px 48px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-subtle);
}

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

.logo-mark {
    width: 40px;
    height: 40px;
    background: var(--accent-gradient);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
    color: white;
    transform: rotate(-3deg);
}

.logo-text {
    font-size: 22px;
    font-weight: 700;
    letter-spacing: -0.03em;
    color: var(--text-primary);
}

.logo-text span {
    color: var(--accent-orange);
}

.nav-links {
    display: flex;
    gap: 40px;
    list-style: none;
}

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: color 0.2s ease;
}

.nav-links a:hover {
    color: var(--text-primary);
}

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

/* Buttons */
.btn {
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
    cursor: pointer;
    border: none;
}

.btn-ghost {
    background: transparent;
    color: var(--text-secondary);
}

.btn-ghost:hover {
    color: var(--text-primary);
}

.btn-primary {
    background: var(--accent-gradient);
    color: white;
    box-shadow: 0 4px 16px var(--glow-orange);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px var(--glow-orange);
}

.btn-secondary {
    background: var(--bg-tertiary);
    color: var(--text-primary);
    border: 1px solid var(--border-medium);
}

.btn-secondary:hover {
    background: var(--bg-secondary);
    border-color: var(--border-medium);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 140px 48px 80px;
    position: relative;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 50% -20%, var(--glow-orange), transparent),
        radial-gradient(ellipse 60% 40% at 80% 60%, var(--glow-blue), transparent);
    pointer-events: none;
}

.hero-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(var(--border-subtle) 1px, transparent 1px),
        linear-gradient(90deg, var(--border-subtle) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse 80% 70% at 50% 30%, black, transparent);
    pointer-events: none;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(232, 90, 36, 0.08);
    border: 1px solid rgba(232, 90, 36, 0.2);
    border-radius: 100px;
    margin-bottom: 32px;
}

.hero-badge span {
    font-size: 14px;
    font-weight: 500;
    color: var(--accent-orange);
}

.hero h1 {
    font-size: clamp(48px, 8vw, 88px);
    font-weight: 700;
    letter-spacing: -0.04em;
    line-height: 1.05;
    margin-bottom: 24px;
}

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

.hero-subtitle {
    font-size: clamp(18px, 2.2vw, 24px);
    color: var(--text-secondary);
    max-width: 620px;
    line-height: 1.6;
    margin-bottom: 16px;
}

.hero-subtitle-secondary {
    font-size: clamp(16px, 1.8vw, 20px);
    color: var(--text-tertiary);
    max-width: 580px;
    line-height: 1.6;
    margin-bottom: 48px;
}

.hero-cta {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

.hero-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    padding-top: 48px;
    border-top: 1px solid var(--border-subtle);
}

.hero-tag {
    padding: 10px 20px;
    border-radius: 100px;
    font-size: 14px;
    font-weight: 500;
    border: 1px solid var(--border-subtle);
    background: var(--bg-secondary);
}

.hero-tag.tag-roadmap {
    border-color: rgba(13, 148, 136, 0.3);
    color: #0D9488;
}

.hero-tag.tag-implementation {
    border-color: rgba(232, 90, 36, 0.3);
    color: var(--accent-orange);
}

.hero-tag.tag-ongoing {
    border-color: rgba(124, 58, 237, 0.3);
    color: #7C3AED;
}

/* Page Hero (shorter) */
.page-hero {
    padding: 160px 48px 80px;
    position: relative;
    overflow: hidden;
}

.page-hero .hero-bg {
    opacity: 0.7;
}

.page-hero h1 {
    font-size: clamp(40px, 6vw, 64px);
    margin-bottom: 20px;
    line-height: 1.1;
}

.page-hero-subtitle {
    font-size: clamp(18px, 2vw, 22px);
    color: var(--text-secondary);
    max-width: 600px;
    line-height: 1.6;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(232, 90, 36, 0.08);
    border: 1px solid rgba(232, 90, 36, 0.2);
    border-radius: 100px;
    margin-bottom: 24px;
}

.hero-badge span {
    font-size: 14px;
    font-weight: 500;
    color: var(--accent-orange);
}

/* Section Styles */
.section {
    padding: 120px 48px;
    position: relative;
}

.section-alt {
    background: var(--bg-secondary);
}

.section-container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-label {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--accent-orange);
    margin-bottom: 16px;
}

.section-header {
    margin-bottom: 64px;
}

.section-header h2 {
    font-size: clamp(32px, 5vw, 52px);
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1.15;
}

.section-header p {
    font-size: 18px;
    color: var(--text-secondary);
    max-width: 600px;
    margin-top: 16px;
    line-height: 1.7;
}

/* Problem Cards */
.problem-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.problem-card {
    padding: 40px;
    background: var(--bg-secondary);
    border: 1px solid var(--border-subtle);
    border-radius: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

.problem-card:hover {
    border-color: var(--border-medium);
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
}

.problem-icon {
    width: 56px;
    height: 56px;
    background: rgba(232, 90, 36, 0.08);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    color: var(--accent-orange);
}

.problem-card h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 12px;
}

.problem-card p {
    color: var(--text-secondary);
    font-size: 16px;
    line-height: 1.7;
}

/* Journey Section */
.journey-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    margin-bottom: 80px;
    flex-wrap: wrap;
}

.journey-step {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 24px;
    background: var(--bg-primary);
    border: 1px solid var(--border-subtle);
    border-radius: 12px;
}

.journey-step.active {
    border-color: var(--accent-orange);
    background: rgba(232, 90, 36, 0.04);
}

.journey-number {
    width: 32px;
    height: 32px;
    background: var(--bg-tertiary);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'JetBrains Mono', monospace;
    font-size: 14px;
    font-weight: 600;
}

.journey-step.active .journey-number {
    background: var(--accent-gradient);
    color: white;
}

.journey-step span {
    font-weight: 600;
    font-size: 15px;
}

.journey-arrow {
    color: var(--text-tertiary);
    font-size: 20px;
}

/* EDGE Method Section */
.edge-method {
    padding: 120px 48px;
    position: relative;
    overflow: hidden;
    background: var(--bg-primary);
}

.edge-method-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 40% at 50% 50%, var(--glow-orange), transparent);
    pointer-events: none;
}

.edge-header {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
    z-index: 2;
}

.edge-header h2 {
    font-size: clamp(36px, 6vw, 64px);
    font-weight: 700;
    letter-spacing: -0.03em;
    margin-bottom: 20px;
}

.edge-header p {
    font-size: 20px;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

.edge-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    position: relative;
    z-index: 2;
}

.edge-step {
    text-align: center;
    padding: 48px 32px;
    background: var(--bg-secondary);
    border: 1px solid var(--border-subtle);
    border-radius: 20px;
    position: relative;
    transition: all 0.3s ease;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

.edge-step:hover {
    border-color: var(--border-medium);
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
}

.edge-letter {
    width: 80px;
    height: 80px;
    background: var(--accent-gradient);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    font-weight: 700;
    color: white;
    margin: 0 auto 24px;
}

.edge-step h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 12px;
}

.edge-step p {
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.7;
}

.edge-connector {
    position: absolute;
    right: -12px;
    top: 50%;
    transform: translateY(-50%);
    width: 24px;
    height: 2px;
    background: var(--accent-gradient);
    z-index: 3;
}

.edge-step:last-child .edge-connector {
    display: none;
}

/* Services Section */
.services-intro {
    background: var(--bg-primary);
    border: 1px solid var(--border-subtle);
    border-radius: 16px;
    padding: 32px 40px;
    margin-bottom: 48px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

.services-intro p {
    font-size: 18px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin: 0;
}

.services-category {
    margin-bottom: 48px;
}

.services-category:last-child {
    margin-bottom: 0;
}

.category-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.category-number {
    font-family: 'JetBrains Mono', monospace;
    font-size: 13px;
    padding: 4px 10px;
    border-radius: 6px;
    background: rgba(0, 0, 0, 0.04);
}

/* Category Colors */
.category-roadmap {
    color: #0D9488;
}
.category-roadmap .category-number {
    background: rgba(13, 148, 136, 0.1);
}
.service-card-roadmap {
    border-color: rgba(13, 148, 136, 0.2);
}
.service-card-roadmap:hover {
    border-color: rgba(13, 148, 136, 0.4);
}
.service-tag-roadmap {
    background: rgba(13, 148, 136, 0.08);
    color: #0D9488;
}
.service-card-roadmap .service-link {
    color: #0D9488;
}

.category-implementation {
    color: var(--accent-orange);
}
.category-implementation .category-number {
    background: rgba(232, 90, 36, 0.1);
}
.service-card-implementation {
    border-color: rgba(232, 90, 36, 0.2);
}
.service-card-implementation:hover {
    border-color: rgba(232, 90, 36, 0.4);
}
.service-tag-implementation {
    background: rgba(232, 90, 36, 0.08);
    color: var(--accent-orange);
}
.service-card-implementation .service-link {
    color: var(--accent-orange);
}

.category-ongoing {
    color: #7C3AED;
}
.category-ongoing .category-number {
    background: rgba(124, 58, 237, 0.1);
}
.service-card-ongoing {
    border-color: rgba(124, 58, 237, 0.2);
}
.service-card-ongoing:hover {
    border-color: rgba(124, 58, 237, 0.4);
}
.service-tag-ongoing {
    background: rgba(124, 58, 237, 0.08);
    color: #7C3AED;
}
.service-card-ongoing .service-link {
    color: #7C3AED;
}

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

.services-grid-three {
    grid-template-columns: repeat(3, 1fr);
}

.service-card {
    padding: 40px;
    background: var(--bg-primary);
    border: 1px solid var(--border-subtle);
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

.service-card.featured {
    background: linear-gradient(135deg, rgba(232, 90, 36, 0.04) 0%, var(--bg-primary) 50%);
    border-color: rgba(232, 90, 36, 0.2);
}

.service-card.full-width {
    grid-column: span 2;
}

.service-card:hover {
    border-color: var(--border-medium);
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
}

.service-tag {
    display: inline-block;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 20px;
    width: fit-content;
}

.service-card h3 {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

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

.service-description {
    color: var(--text-secondary);
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 24px;
}

.service-features {
    list-style: none;
    margin-bottom: 24px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.service-features li {
    font-size: 15px;
    color: var(--text-secondary);
    padding-left: 20px;
    position: relative;
}

.service-features li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--text-tertiary);
}

.service-card-roadmap .service-features li::before {
    color: #0D9488;
}

.service-card-implementation .service-features li::before {
    color: var(--accent-orange);
}

.service-card-ongoing .service-features li::before {
    color: #7C3AED;
}

.service-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 24px;
    border-top: 1px solid var(--border-subtle);
    margin-top: auto;
}

.service-meta-stacked {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding-top: 24px;
    border-top: 1px solid var(--border-subtle);
    margin-top: auto;
}

.service-price {
    font-family: 'JetBrains Mono', monospace;
    font-size: 15px;
    color: var(--text-tertiary);
}

.service-duration {
    font-size: 14px;
    color: var(--text-tertiary);
    margin-top: 4px;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--accent-orange);
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    transition: gap 0.2s ease;
}

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

/* Why Us Section */
.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.why-card {
    padding: 32px;
    background: var(--bg-secondary);
    border: 1px solid var(--border-subtle);
    border-radius: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

.why-card:hover {
    border-color: var(--border-medium);
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
}

.why-number {
    font-family: 'JetBrains Mono', monospace;
    font-size: 13px;
    color: var(--accent-orange);
    margin-bottom: 16px;
}

.why-card h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
    letter-spacing: -0.01em;
}

.why-card p {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.7;
}

/* Audience Section */
.audience-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.audience-card {
    padding: 48px;
    background: var(--bg-primary);
    border: 1px solid var(--border-subtle);
    border-radius: 24px;
    transition: all 0.3s ease;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

.audience-card:hover {
    border-color: var(--border-medium);
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
}

.audience-icon {
    width: 56px;
    height: 56px;
    background: rgba(232, 90, 36, 0.08);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    color: var(--accent-orange);
}

.audience-card h3 {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 16px;
}

.audience-card > p {
    color: var(--text-secondary);
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 32px;
}

.audience-benefits {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

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

.benefit-check {
    width: 24px;
    height: 24px;
    background: rgba(232, 90, 36, 0.08);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.benefit-check svg {
    width: 14px;
    height: 14px;
    color: var(--accent-orange);
}

.benefit span {
    font-size: 15px;
    color: var(--text-secondary);
}

/* Contact Form Section */
.contact-section {
    padding: 120px 48px;
    position: relative;
    overflow: hidden;
    background: var(--bg-primary);
}

.contact-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 50% at 50% 50%, var(--glow-orange), transparent);
    pointer-events: none;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
    position: relative;
    z-index: 2;
}

.contact-text h2 {
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 700;
    letter-spacing: -0.03em;
    margin-bottom: 20px;
    line-height: 1.1;
}

.contact-text p {
    font-size: 18px;
    color: var(--text-secondary);
    line-height: 1.7;
}

.contact-form-wrapper {
    background: var(--bg-secondary);
    border: 1px solid var(--border-subtle);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

.contact-form-wrapper iframe {
    width: 100%;
    min-height: 447px;
}

/* Form Styles */
.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid var(--border-medium);
    border-radius: 8px;
    font-size: 15px;
    font-family: inherit;
    background: var(--bg-primary);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

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

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

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-tertiary);
}

/* CTA Section */
.cta-section {
    padding: 100px 48px;
    text-align: center;
    background: var(--bg-secondary);
}

.cta-section h2 {
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 700;
    letter-spacing: -0.03em;
    margin-bottom: 16px;
}

.cta-section p {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 32px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

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

/* Footer */
footer {
    padding: 60px 48px 40px;
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-subtle);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto 40px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
}

.footer-main p {
    color: var(--text-secondary);
    font-size: 15px;
    margin-top: 20px;
    max-width: 400px;
    line-height: 1.7;
}

.footer-links {
    display: flex;
    gap: 32px;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: var(--text-primary);
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 32px;
    border-top: 1px solid var(--border-subtle);
}

.footer-bottom p {
    color: var(--text-tertiary);
    font-size: 14px;
}

/* Responsive */
@media (max-width: 1024px) {
    .nav-links {
        display: none;
    }

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

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

    .edge-connector {
        display: none;
    }

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

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

    .service-card.featured {
        grid-column: span 1;
    }

    .service-card.full-width {
        grid-column: span 1;
    }

    .audience-cards {
        grid-template-columns: 1fr;
    }

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

    .contact-content {
        grid-template-columns: 1fr;
        gap: 48px;
    }
}

@media (max-width: 768px) {
    nav {
        padding: 16px 24px;
    }

    .hero, .page-hero {
        padding: 120px 24px 60px;
    }

    .hero-tags {
        flex-wrap: wrap;
    }

    .section, .edge-method, .contact-section, .cta-section {
        padding: 80px 24px;
    }

    .edge-steps {
        grid-template-columns: 1fr;
    }

    .journey-visual {
        flex-direction: column;
    }

    .journey-arrow {
        transform: rotate(90deg);
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .contact-form-wrapper {
        padding: 24px;
    }

    .footer-bottom {
        text-align: center;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .cta-buttons .btn {
        width: 100%;
        text-align: center;
    }
}
