/* Google Font */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

:root {
    --bg-dark: #050816;
    --bg-darker: #02040b;
    --primary: #4f46e5;      /* Indigo */
    --primary-soft: #6366f1;
    --accent: #a855f7;       /* Purple */
    --text-main: #e5e7eb;
    --text-muted: #9ca3af;
    --card-bg: #0b1020;
    --border-subtle: #111827;
    --shadow-soft: 0 22px 45px rgba(15, 23, 42, 0.75);
    --radius-lg: 16px;
    --radius-md: 12px;
    --radius-pill: 999px;
    --transition-fast: 0.25s ease;
    --max-width: 1120px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: radial-gradient(circle at top left, #111827 0, #020617 40%, #02040b 100%);
    color: var(--text-main);
    -webkit-font-smoothing: antialiased;
}

/* Layout */

.site-wrapper {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

main {
    flex: 1;
}

.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Top Bar / Header */

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    backdrop-filter: blur(16px);
    background: linear-gradient(to bottom, rgba(3, 7, 18, 0.96), rgba(3, 7, 18, 0.90), transparent);
    border-bottom: 1px solid rgba(55, 65, 81, 0.5);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.85rem 0;
}

.brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.brand-logo {
    width: 36px;
    height: 36px;
    border-radius: 14px;
    background: conic-gradient(from 160deg, #4f46e5, #7c3aed, #06b6d4, #4f46e5);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 16px 35px rgba(88, 80, 236, 0.7);
}

.brand-logo span {
    font-size: 0.8rem;
    font-weight: 700;
    color: #e5e7eb;
}

.brand-text {
    display: flex;
    flex-direction: column;
}

.brand-name {
    font-size: 0.9rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    font-weight: 600;
    color: #e5e7eb;
}

.brand-tagline {
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* Navigation */

.nav {
    display: flex;
    align-items: center;
    gap: 1.75rem;
}

.nav a {
    font-size: 0.86rem;
    font-weight: 500;
    color: var(--text-muted);
    text-decoration: none;
    position: relative;
    padding-bottom: 0.2rem;
    transition: color var(--transition-fast);
}

.nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(to right, var(--primary), var(--accent));
    transition: width var(--transition-fast);
}

.nav a:hover {
    color: #e5e7eb;
}

.nav a:hover::after,
.nav a.active::after {
    width: 100%;
}

.nav a.active {
    color: #e5e7eb;
}

/* Mobile nav (simple) */

.nav-toggle {
    display: none;
    width: 32px;
    height: 32px;
    border-radius: 999px;
    border: 1px solid rgba(75, 85, 99, 0.7);
    background: rgba(15, 23, 42, 0.85);
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.nav-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    background: #e5e7eb;
    position: relative;
}

.nav-toggle span::before,
.nav-toggle span::after {
    content: "";
    position: absolute;
    width: 18px;
    height: 2px;
    background: #e5e7eb;
    left: 0;
}

.nav-toggle span::before {
    top: -5px;
}

.nav-toggle span::after {
    top: 5px;
}

@media (max-width: 768px) {
    .nav {
        display: none;
    }
    .nav-toggle {
        display: flex;
    }
}

/* Hero (Home) */

.hero {
    padding: 3.5rem 0 3rem;
    position: relative;
    overflow: hidden;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.hero-copy {
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.35rem 0.85rem;
    border-radius: var(--radius-pill);
    border: 1px solid rgba(99, 102, 241, 0.45);
    background: radial-gradient(circle at top left, rgba(79, 70, 229, 0.35), rgba(15, 23, 42, 0.95));
    color: #e5e7eb;
    font-size: 0.7rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.hero-badge-dot {
    width: 6px;
    height: 6px;
    border-radius: 999px;
    background: #22c55e;
}

.hero-title {
    font-size: clamp(2.1rem, 4vw, 2.9rem);
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin: 0 0 1rem;
}

.hero-title span {
    background: linear-gradient(to right, #e5e7eb, #93c5fd);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero-subtitle {
    max-width: 32rem;
    color: var(--text-muted);
    font-size: 0.98rem;
    line-height: 1.6;
    margin-bottom: 1.6rem;
}

.hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1.25rem;
    margin-bottom: 2.2rem;
}

.hero-chip {
    padding: 0.55rem 0.95rem;
    border-radius: var(--radius-pill);
    border: 1px solid rgba(55, 65, 81, 0.8);
    background: rgba(15, 23, 42, 0.9);
    font-size: 0.78rem;
    color: #d1d5db;
}

.hero-cta-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1.25rem;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.7rem 1.3rem;
    border-radius: var(--radius-pill);
    border: none;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 500;
    color: #e5e7eb;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    box-shadow: 0 16px 32px rgba(79, 70, 229, 0.6);
    text-decoration: none;
    transition: transform var(--transition-fast), box-shadow var(--transition-fast), opacity var(--transition-fast);
}

.btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 20px 40px rgba(79, 70, 229, 0.7);
    opacity: 0.95;
}

.btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.6rem 1.1rem;
    border-radius: var(--radius-pill);
    border: 1px solid rgba(75, 85, 99, 0.9);
    background: rgba(15, 23, 42, 0.8);
    color: var(--text-muted);
    font-size: 0.86rem;
    text-decoration: none;
    transition: border-color var(--transition-fast), color var(--transition-fast), background var(--transition-fast);
}

.btn-ghost:hover {
    border-color: rgba(148, 163, 184, 0.9);
    color: #e5e7eb;
    background: rgba(15, 23, 42, 0.95);
}

.hero-visual {
    position: relative;
    min-height: 260px;
}

.hero-card {
    position: relative;
    background: radial-gradient(circle at top, rgba(79, 70, 229, 0.45), rgba(15, 23, 42, 0.98));
    border-radius: 26px;
    padding: 1.6rem 1.4rem;
    box-shadow: var(--shadow-soft);
    overflow: hidden;
    border: 1px solid rgba(148, 163, 184, 0.35);
    isolation: isolate;
}

/* Fiber-esque background overlay */
.hero-card::before {
    content: "";
    position: absolute;
    inset: -40%;
    background-image:
        radial-gradient(circle at 20% 20%, rgba(59, 130, 246, 0.35) 0, transparent 60%),
        radial-gradient(circle at 80% 0, rgba(168, 85, 247, 0.4) 0, transparent 60%),
        repeating-linear-gradient(130deg, rgba(15, 23, 42, 0.2) 0, rgba(15, 23, 42, 0.2) 1px, transparent 1px, transparent 3px);
    opacity: 0.8;
    mix-blend-mode: screen;
    z-index: -1;
}

.hero-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.25rem;
}

.hero-card-title {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: #e5e7eb;
}

.hero-card-status {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.35rem 0.7rem;
    border-radius: var(--radius-pill);
    background: rgba(15, 23, 42, 0.85);
    font-size: 0.7rem;
    color: #a5b4fc;
}

.hero-card-status-dot {
    width: 7px;
    height: 7px;
    border-radius: 999px;
    background: #22c55e;
}

.hero-metrics {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.9rem;
    margin-bottom: 1.4rem;
}

.metric {
    padding: 0.85rem 0.65rem;
    border-radius: 1rem;
    background: rgba(15, 23, 42, 0.82);
    border: 1px solid rgba(55, 65, 81, 0.85);
    backdrop-filter: blur(10px);
}

.metric-label {
    font-size: 0.7rem;
    color: var(--text-muted);
    margin-bottom: 0.25rem;
}

.metric-value {
    font-size: 1.1rem;
    font-weight: 600;
}

.metric-tag {
    font-size: 0.7rem;
    color: #a5b4fc;
    margin-top: 0.1rem;
}

.hero-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.1rem;
}

.hero-card-footnote {
    font-size: 0.75rem;
    color: #cbd5f5;
    max-width: 12rem;
}

.hero-card-footnote span {
    color: #a5b4fc;
}

/* Decorative fiber lines */
.hero-orbit {
    position: absolute;
    inset: -30%;
    border-radius: 999px;
    border: 1px solid rgba(129, 140, 248, 0.4);
    opacity: 0.4;
    transform: rotate(-10deg);
}

/* Sections */

.section {
    padding: 2.8rem 0;
}

.section-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1.5rem;
    margin-bottom: 1.8rem;
}

.section-kicker {
    font-size: 0.78rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 0.25rem;
}

.section-title {
    font-size: 1.45rem;
    letter-spacing: -0.02em;
    margin: 0;
}

.section-description {
    font-size: 0.9rem;
    color: var(--text-muted);
    max-width: 24rem;
}

/* Features Grid */

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.3rem;
}

.feature-card {
    background: radial-gradient(circle at top left, rgba(31, 41, 55, 0.8), rgba(15, 23, 42, 0.98));
    border-radius: var(--radius-md);
    padding: 1rem;
    border: 1px solid rgba(55, 65, 81, 0.9);
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.9);
    transition: transform var(--transition-fast), box-shadow var(--transition-fast), border-color var(--transition-fast), background var(--transition-fast);
}

.feature-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 22px 50px rgba(15, 23, 42, 0.95);
    border-color: rgba(129, 140, 248, 0.9);
    background: radial-gradient(circle at top left, rgba(79, 70, 229, 0.3), rgba(15, 23, 42, 0.98));
}

.feature-icon {
    width: 32px;
    height: 32px;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle at 30% 0, #a855f7, #4f46e5);
    font-size: 0.85rem;
    margin-bottom: 0.8rem;
}

.feature-title {
    font-size: 0.98rem;
    margin-bottom: 0.4rem;
}

.feature-text {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Services */

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.3rem;
}

.service-card {
    background: rgba(15, 23, 42, 0.96);
    border-radius: var(--radius-md);
    padding: 1.15rem 1.1rem 1.1rem;
    border: 1px solid rgba(51, 65, 85, 0.9);
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
    transition: transform var(--transition-fast), border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.service-card:hover {
    transform: translateY(-3px);
    border-color: rgba(96, 165, 250, 0.9);
    box-shadow: 0 18px 45px rgba(30, 64, 175, 0.95);
}

.service-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.7rem;
    padding: 0.3rem 0.8rem;
    border-radius: var(--radius-pill);
    background: rgba(15, 23, 42, 0.9);
    border: 1px solid rgba(55, 65, 81, 0.9);
    color: #9ca3af;
}

.service-title {
    font-size: 1rem;
    margin: 0;
}

.service-text {
    font-size: 0.87rem;
    color: var(--text-muted);
}

.service-meta {
    margin-top: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.78rem;
    color: #9ca3af;
}

/* Page hero (inner pages) */

.page-hero {
    padding: 2.7rem 0 2.1rem;
    border-bottom: 1px solid rgba(31, 41, 55, 0.9);
}

.page-breadcrumb {
    font-size: 0.76rem;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: var(--text-muted);
    margin-bottom: 0.6rem;
}

.page-title {
    font-size: 1.9rem;
    letter-spacing: -0.03em;
    margin: 0 0 0.75rem;
}

.page-subtitle {
    max-width: 36rem;
    font-size: 0.95rem;
    color: var(--text-muted);
}

/* About content */

.about-layout {
    padding: 2.4rem 0 2.8rem;
    display: grid;
    grid-template-columns: 1.6fr 1.1fr;
    gap: 2.4rem;
    align-items: flex-start;
}

.about-text p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text-main);
    margin-top: 0;
    margin-bottom: 1rem;
}

.about-highlight {
    padding: 1rem 1.1rem;
    border-radius: var(--radius-md);
    background: rgba(15, 23, 42, 0.96);
    border: 1px solid rgba(51, 65, 85, 0.9);
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-top: 0.5rem;
}

.about-pill-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin-top: 1rem;
}

.about-pill {
    padding: 0.35rem 0.9rem;
    border-radius: var(--radius-pill);
    border: 1px solid rgba(55, 65, 81, 0.9);
    font-size: 0.78rem;
    color: #cbd5f5;
    background: rgba(15, 23, 42, 0.96);
}

.about-aside-card {
    border-radius: var(--radius-lg);
    background: radial-gradient(circle at top, rgba(79, 70, 229, 0.3), rgba(15, 23, 42, 0.98));
    border: 1px solid rgba(148, 163, 184, 0.4);
    padding: 1.4rem 1.2rem;
    box-shadow: var(--shadow-soft);
}

.about-aside-title {
    font-size: 1rem;
    margin: 0 0 0.7rem;
}

.about-aside-text {
    font-size: 0.88rem;
    color: var(--text-muted);
    margin-bottom: 1.1rem;
}

.about-aside-list {
    list-style: none;
    padding: 0;
    margin: 0 0 0.8rem;
    font-size: 0.85rem;
    color: #d1d5db;
}

.about-aside-list li {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    margin-bottom: 0.45rem;
}

.about-aside-dot {
    width: 6px;
    height: 6px;
    border-radius: 999px;
    background: #a5b4fc;
}

/* Contact page */

.contact-layout {
    padding: 2.4rem 0 2.8rem;
    display: grid;
    grid-template-columns: 1.2fr 1.1fr;
    gap: 2.4rem;
}

.contact-card {
    background: rgba(15, 23, 42, 0.96);
    border-radius: var(--radius-lg);
    padding: 1.4rem 1.5rem 1.6rem;
    border: 1px solid rgba(51, 65, 85, 0.9);
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.95);
}

.contact-card h2 {
    font-size: 1.1rem;
    margin-top: 0;
    margin-bottom: 0.8rem;
}

.contact-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-top: 0;
    margin-bottom: 1.1rem;
}

.contact-details {
    margin-bottom: 1.4rem;
    font-size: 0.9rem;
}

.contact-details h3 {
    font-size: 0.86rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--text-muted);
    margin-bottom: 0.3rem;
}

.contact-details address {
    font-style: normal;
    line-height: 1.6;
    color: #e5e7eb;
}

.contact-details a {
    color: #a5b4fc;
    text-decoration: none;
}

.contact-details a:hover {
    text-decoration: underline;
}

/* Contact form */

.contact-form {
    display: grid;
    gap: 0.9rem;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.9rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.form-label {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.form-input,
.form-textarea {
    background: rgba(15, 23, 42, 0.98);
    border-radius: 0.8rem;
    border: 1px solid rgba(55, 65, 81, 0.95);
    padding: 0.65rem 0.75rem;
    font-size: 0.88rem;
    color: #e5e7eb;
    outline: none;
    transition: border-color var(--transition-fast), box-shadow var(--transition-fast), background var(--transition-fast);
}

.form-input:focus,
.form-textarea:focus {
    border-color: rgba(129, 140, 248, 1);
    box-shadow: 0 0 0 1px rgba(129, 140, 248, 0.8);
    background: rgba(15, 23, 42, 1);
}

.form-textarea {
    min-height: 120px;
    resize: vertical;
}

.form-helper {
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* Map placeholder */

.map-card {
    background: rgba(15, 23, 42, 0.96);
    border-radius: var(--radius-lg);
    padding: 1.2rem 1.25rem 1.3rem;
    border: 1px solid rgba(51, 65, 85, 0.9);
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.95);
}

.map-card h2 {
    font-size: 1rem;
    margin: 0 0 0.7rem;
}

.map-frame {
    border-radius: 1rem;
    overflow: hidden;
    border: 1px solid rgba(31, 41, 55, 0.95);
}

/* Blog */

.blog-layout {
    padding: 2.4rem 0 2.8rem;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.4rem;
}

.blog-card {
    background: rgba(15, 23, 42, 0.96);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(51, 65, 85, 0.95);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.95);
    transition: transform var(--transition-fast), box-shadow var(--transition-fast), border-color var(--transition-fast);
}

.blog-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 22px 52px rgba(15, 23, 42, 0.98);
    border-color: rgba(96, 165, 250, 0.95);
}

.blog-image {
    height: 150px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

/* Pseudo image treatments (you'll replace with real image URLs) */
.blog-image.overlay::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(15, 23, 42, 0.75), transparent 60%);
}

.blog-content {
    padding: 1.05rem 1.1rem 1.2rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.blog-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.75rem;
    color: var(--text-muted);
}

.blog-title {
    font-size: 1rem;
    margin: 0;
}

.blog-excerpt {
    font-size: 0.86rem;
    color: var(--text-muted);
}

.blog-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 0.3rem;
    font-size: 0.75rem;
}

.blog-tag {
    padding: 0.25rem 0.7rem;
    border-radius: var(--radius-pill);
    border: 1px solid rgba(55, 65, 81, 0.95);
    color: #cbd5f5;
}

/* Blog detail style (for future) */

.blog-detail {
    max-width: 760px;
    margin: 0 auto;
    padding: 2.4rem 0 2.8rem;
}

.blog-detail h2 {
    font-size: 1.4rem;
    margin-top: 1.6rem;
    margin-bottom: 0.7rem;
}

.blog-detail p {
    font-size: 0.95rem;
    line-height: 1.8;
    color: var(--text-main);
}

/* Footer */

.site-footer {
    border-top: 1px solid rgba(31, 41, 55, 0.95);
    padding: 1.3rem 0 1.4rem;
    background: radial-gradient(circle at top, rgba(15, 23, 42, 0.9), rgba(3, 7, 18, 1));
}

.footer-inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 1rem;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.footer-left {
    max-width: 24rem;
}

.footer-left strong {
    color: #e5e7eb;
}

.footer-right {
    text-align: right;
}

.footer-right a {
    color: #a5b4fc;
    text-decoration: none;
}

.footer-right a:hover {
    text-decoration: underline;
}

/* Subtle fade-up animation on scroll-like effect (on load) */

.fade-up {
    opacity: 0;
    transform: translateY(10px);
    animation: fadeUp 0.7s ease forwards;
}

.fade-up.delay-1 {
    animation-delay: 0.1s;
}

.fade-up.delay-2 {
    animation-delay: 0.2s;
}

.fade-up.delay-3 {
    animation-delay: 0.35s;
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */

@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1.1fr 1.1fr;
        gap: 2rem;
    }
    .features-grid,
    .services-grid,
    .blog-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .about-layout,
    .contact-layout {
        grid-template-columns: 1.2fr 1.2fr;
    }
}

@media (max-width: 768px) {
    .hero {
        padding-top: 2.4rem;
    }
    .hero-grid {
        grid-template-columns: 1fr;
    }
    .hero-visual {
        order: -1;
    }
    .section {
        padding: 2.1rem 0;
    }
    .section-header {
        flex-direction: column;
        align-items: flex-start;
    }
    .about-layout,
    .contact-layout {
        grid-template-columns: 1fr;
    }
    .blog-grid,
    .features-grid,
    .services-grid {
        grid-template-columns: 1fr;
    }
    .footer-right {
        text-align: left;
    }
}

@media (max-width: 480px) {
    .hero-meta {
        flex-direction: column;
        align-items: flex-start;
    }
    .hero-cta-row {
        flex-direction: column;
        align-items: flex-start;
    }
    .form-row {
        grid-template-columns: 1fr;
    }
}
