/* ============================================
   BuildMate Calculator — Website Styles
   Design: Light, clean, professional
   Colors: Navy #102A43, Amber #F4A340, Concrete #F7F5F0
   ============================================ */

/* --- CSS Variables --- */
:root {
    --navy: #102A43;
    --navy-light: #1B3A57;
    --navy-dark: #0A1929;
    --amber: #F4A340;
    --amber-deep: #C87916;
    --amber-glow: rgba(244, 163, 64, 0.15);
    --concrete: #F7F5F0;
    --white: #FFFFFF;
    --slate: #52606D;
    --slate-light: #7B8794;
    --border-stone: #E3DED5;
    --success: #237A57;
    --warning: #B5473C;
    --shadow-sm: 0 1px 3px rgba(16, 42, 67, 0.06);
    --shadow-md: 0 4px 16px rgba(16, 42, 67, 0.08);
    --shadow-lg: 0 8px 32px rgba(16, 42, 67, 0.12);
    --shadow-xl: 0 16px 48px rgba(16, 42, 67, 0.16);
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

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

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

a {
    color: var(--amber-deep);
    text-decoration: none;
    transition: color var(--transition);
}

a:hover {
    color: var(--amber);
}

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

/* --- Container --- */
.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 24px;
}

/* --- Navbar --- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    transition: all var(--transition);
    border-bottom: 1px solid transparent;
}

.navbar.scrolled {
    padding: 10px 0;
    background: rgba(255, 255, 255, 0.95);
    border-bottom: 1px solid var(--border-stone);
    box-shadow: var(--shadow-sm);
}

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

.nav-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--navy);
}

.nav-icon {
    width: 36px;
    height: 36px;
    border-radius: var(--radius-sm);
}

.nav-title {
    font-size: 1.15rem;
    font-weight: 700;
    letter-spacing: -0.3px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 8px;
    list-style: none;
}

.nav-links a {
    color: var(--slate);
    font-size: 0.9rem;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    transition: all var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--navy);
    background: var(--concrete);
}

.nav-cta {
    background: var(--navy) !important;
    color: var(--white) !important;
    padding: 10px 22px !important;
    border-radius: var(--radius-md) !important;
    font-weight: 600 !important;
    box-shadow: var(--shadow-sm);
}

.nav-cta:hover {
    background: var(--navy-light) !important;
    color: var(--white) !important;
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

/* Hamburger */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.hamburger {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--navy);
    border-radius: 2px;
    transition: all var(--transition);
}

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

/* --- Hero Section --- */
.hero {
    padding: 160px 0 100px;
    background: linear-gradient(160deg, var(--white) 0%, var(--concrete) 50%, rgba(244, 163, 64, 0.05) 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--amber-glow) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.hero-content {
    display: flex;
    align-items: center;
    gap: 80px;
}

.hero-text {
    flex: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--amber-glow);
    color: var(--amber-deep);
    padding: 6px 16px;
    border-radius: 100px;
    font-size: 0.82rem;
    font-weight: 600;
    margin-bottom: 24px;
    border: 1px solid rgba(244, 163, 64, 0.2);
}

.hero-badge svg {
    width: 14px;
    height: 14px;
}

.hero-text h1 {
    font-size: 3.2rem;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -1.5px;
    color: var(--navy);
    margin-bottom: 20px;
}

.hero-text h1 span {
    background: linear-gradient(135deg, var(--amber) 0%, var(--amber-deep) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-text p {
    font-size: 1.15rem;
    color: var(--slate);
    line-height: 1.8;
    margin-bottom: 36px;
    max-width: 480px;
}

.hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.hero-visual {
    flex: 0 0 340px;
    position: relative;
}

.phone-mockup {
    width: 280px;
    height: 560px;
    background: var(--navy);
    border-radius: 40px;
    padding: 12px;
    box-shadow: var(--shadow-xl), 0 0 0 1px rgba(16, 42, 67, 0.1);
    position: relative;
    margin: 0 auto;
    transform: perspective(1000px) rotateY(-5deg) rotateX(2deg);
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.phone-mockup:hover {
    transform: perspective(1000px) rotateY(0deg) rotateX(0deg);
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: #0A1929;
    border-radius: 28px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.phone-screen-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.phone-screen .screen-header {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 16px;
    text-align: center;
}

.screen-card {
    width: 100%;
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 14px;
    margin-bottom: 10px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-stone);
}

.screen-card .card-icon {
    width: 28px;
    height: 28px;
    background: var(--amber-glow);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 8px;
    font-size: 14px;
}

.screen-card h4 {
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 3px;
}

.screen-card p {
    font-size: 0.6rem;
    color: var(--slate-light);
    line-height: 1.4;
}

.floating-badge {
    position: absolute;
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 12px 16px;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 10px;
    animation: float 6s ease-in-out infinite;
    border: 1px solid var(--border-stone);
}

.floating-badge.badge-top {
    top: 30px;
    right: -20px;
}

.floating-badge.badge-bottom {
    bottom: 60px;
    left: -30px;
    animation-delay: -3s;
}

.floating-badge .badge-icon {
    width: 36px;
    height: 36px;
    background: var(--amber-glow);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.floating-badge .badge-text {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--navy);
}

.floating-badge .badge-sub {
    font-size: 0.65rem;
    color: var(--slate-light);
}

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

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: var(--radius-md);
    font-family: var(--font);
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: all var(--transition);
    text-decoration: none;
}

.btn-primary {
    background: var(--navy);
    color: var(--white);
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    background: var(--navy-light);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-amber {
    background: linear-gradient(135deg, var(--amber) 0%, var(--amber-deep) 100%);
    color: var(--white);
    box-shadow: 0 4px 16px rgba(244, 163, 64, 0.3);
}

.btn-amber:hover {
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(244, 163, 64, 0.4);
}

.btn-outline {
    background: transparent;
    color: var(--navy);
    border: 2px solid var(--border-stone);
}

.btn-outline:hover {
    border-color: var(--navy);
    background: var(--concrete);
    color: var(--navy);
}

.btn svg {
    width: 18px;
    height: 18px;
}

/* --- Sections --- */
.section {
    padding: 100px 0;
}

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

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-label {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--amber-deep);
    margin-bottom: 12px;
}

.section-header h2 {
    font-size: 2.4rem;
    font-weight: 800;
    letter-spacing: -1px;
    color: var(--navy);
    margin-bottom: 16px;
}

.section-header p {
    font-size: 1.05rem;
    color: var(--slate);
    max-width: 560px;
    margin: 0 auto;
}

/* --- Feature Cards --- */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.feature-card {
    background: var(--white);
    border: 1px solid var(--border-stone);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--amber), var(--amber-deep));
    transform: scaleX(0);
    transition: transform var(--transition);
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

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

.feature-icon {
    width: 52px;
    height: 52px;
    background: var(--amber-glow);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--navy);
}

.feature-card p {
    color: var(--slate);
    font-size: 0.92rem;
    line-height: 1.7;
}

/* --- How It Works --- */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    counter-reset: step;
}

.step-card {
    text-align: center;
    position: relative;
}

.step-number {
    width: 52px;
    height: 52px;
    background: var(--navy);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 700;
    margin: 0 auto 20px;
    position: relative;
}

.step-card:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 26px;
    left: calc(50% + 36px);
    width: calc(100% - 72px);
    height: 2px;
    background: var(--border-stone);
}

.step-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--navy);
}

.step-card p {
    font-size: 0.88rem;
    color: var(--slate);
    line-height: 1.6;
}

/* --- CTA Section --- */
.cta-section {
    padding: 100px 0;
    background: var(--navy);
    color: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -20%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(244, 163, 64, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.cta-section::after {
    content: '';
    position: absolute;
    bottom: -40%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(244, 163, 64, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

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

.cta-section h2 {
    font-size: 2.6rem;
    font-weight: 800;
    letter-spacing: -1px;
    margin-bottom: 16px;
}

.cta-section p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 36px;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
}

/* --- Page Header --- */
.page-header {
    padding: 140px 0 60px;
    background: linear-gradient(160deg, var(--white) 0%, var(--concrete) 100%);
    text-align: center;
}

.page-header h1 {
    font-size: 2.6rem;
    font-weight: 800;
    letter-spacing: -1px;
    color: var(--navy);
    margin-bottom: 12px;
}

.page-header p {
    font-size: 1.05rem;
    color: var(--slate);
    max-width: 520px;
    margin: 0 auto;
}

/* --- Content Pages (Privacy, Terms, etc.) --- */
.content-section {
    padding: 60px 0 100px;
}

.content-wrapper {
    max-width: 780px;
    margin: 0 auto;
}

.content-wrapper h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--navy);
    margin: 40px 0 16px;
    padding-top: 20px;
    border-top: 1px solid var(--border-stone);
}

.content-wrapper h2:first-of-type {
    border-top: none;
    margin-top: 0;
    padding-top: 0;
}

.content-wrapper h3 {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--navy);
    margin: 24px 0 10px;
}

.content-wrapper p {
    color: var(--slate);
    margin-bottom: 16px;
    line-height: 1.8;
}

.content-wrapper ul, .content-wrapper ol {
    color: var(--slate);
    margin: 12px 0 20px 24px;
    line-height: 1.8;
}

.content-wrapper li {
    margin-bottom: 6px;
}

.content-wrapper strong {
    color: var(--navy);
}

.effective-date {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--concrete);
    padding: 8px 18px;
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--slate);
    margin-bottom: 32px;
}

.info-box {
    background: var(--concrete);
    border-left: 4px solid var(--amber);
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    padding: 20px 24px;
    margin: 24px 0;
}

.info-box p {
    color: var(--slate);
    margin-bottom: 0;
    font-size: 0.92rem;
}

/* --- Contact Page --- */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}

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

.contact-card {
    background: var(--white);
    border: 1px solid var(--border-stone);
    border-radius: var(--radius-lg);
    padding: 28px;
    transition: all var(--transition);
}

.contact-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    border-color: transparent;
}

.contact-card-icon {
    width: 48px;
    height: 48px;
    background: var(--amber-glow);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 16px;
}

.contact-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 6px;
}

.contact-card p {
    color: var(--slate);
    font-size: 0.9rem;
    line-height: 1.6;
}

.contact-card a {
    color: var(--amber-deep);
    font-weight: 600;
}

.contact-form-wrapper {
    background: var(--white);
    border: 1px solid var(--border-stone);
    border-radius: var(--radius-lg);
    padding: 36px;
}

.contact-form-wrapper h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 24px;
}

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

.form-group label {
    display: block;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 6px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid var(--border-stone);
    border-radius: var(--radius-sm);
    font-family: var(--font);
    font-size: 0.92rem;
    color: var(--navy);
    background: var(--white);
    transition: all var(--transition);
    outline: none;
}

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

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

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

/* --- About Page --- */
.about-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-content h2 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.about-content p {
    color: var(--slate);
    line-height: 1.8;
    margin-bottom: 16px;
}

.about-visual {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.about-stat {
    background: var(--white);
    border: 1px solid var(--border-stone);
    border-radius: var(--radius-lg);
    padding: 28px;
    text-align: center;
    transition: all var(--transition);
}

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

.about-stat .stat-value {
    font-size: 2rem;
    font-weight: 800;
    color: var(--amber-deep);
    display: block;
    margin-bottom: 4px;
}

.about-stat .stat-label {
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--slate);
}

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

.value-card {
    background: var(--white);
    border: 1px solid var(--border-stone);
    border-radius: var(--radius-lg);
    padding: 32px;
    text-align: center;
    transition: all var(--transition);
}

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

.value-icon {
    width: 56px;
    height: 56px;
    background: var(--amber-glow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    margin: 0 auto 16px;
}

.value-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 8px;
}

.value-card p {
    font-size: 0.88rem;
    color: var(--slate);
    line-height: 1.6;
}

/* --- Data Deletion --- */
.deletion-steps {
    counter-reset: deletion;
}

.deletion-step {
    display: flex;
    gap: 20px;
    margin-bottom: 28px;
    align-items: flex-start;
}

.deletion-step-number {
    flex: 0 0 40px;
    width: 40px;
    height: 40px;
    background: var(--navy);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.95rem;
}

.deletion-step-content h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 4px;
}

.deletion-step-content p {
    color: var(--slate);
    font-size: 0.92rem;
    line-height: 1.6;
}

/* --- Footer --- */
.footer {
    background: var(--navy);
    color: rgba(255, 255, 255, 0.8);
    padding: 64px 0 0;
}

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

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
}

.footer-icon {
    width: 36px;
    height: 36px;
    border-radius: var(--radius-sm);
}

.footer-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--white);
}

.footer-desc {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
}

.footer-links-group h4 {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--white);
    margin-bottom: 16px;
}

.footer-links-group ul {
    list-style: none;
}

.footer-links-group li {
    margin-bottom: 10px;
}

.footer-links-group a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.88rem;
    transition: color var(--transition);
}

.footer-links-group a:hover {
    color: var(--amber);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
}

.footer-bottom p {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.5);
}

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

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.82rem;
}

.footer-bottom-links a:hover {
    color: var(--amber);
}

/* --- Fade-in Animation --- */
.fade-in {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* --- Responsive --- */
@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .step-card::after {
        display: none;
    }
    .about-hero {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        align-items: stretch;
        padding: 80px 24px 24px;
        gap: 4px;
        box-shadow: var(--shadow-xl);
        transition: right var(--transition);
    }

    .nav-links.open {
        right: 0;
    }

    .nav-links a {
        padding: 12px 16px;
    }

    .nav-cta {
        text-align: center;
        margin-top: 8px;
    }

    .hero {
        padding: 120px 0 60px;
    }

    .hero-content {
        flex-direction: column;
        gap: 48px;
        text-align: center;
    }

    .hero-text h1 {
        font-size: 2.2rem;
    }

    .hero-text p {
        margin: 0 auto 28px;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-visual {
        flex: 0 0 auto;
    }

    .phone-mockup {
        width: 220px;
        height: 440px;
        transform: none;
    }

    .floating-badge {
        display: none;
    }

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

    .steps-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .section {
        padding: 60px 0;
    }

    .section-header h2 {
        font-size: 1.8rem;
    }

    .page-header h1 {
        font-size: 1.8rem;
    }

    .cta-section h2 {
        font-size: 1.8rem;
    }

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

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

    .footer-brand {
        grid-column: 1 / -1;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }

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

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

    .form-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 1.8rem;
    }

    .btn {
        padding: 12px 22px;
        font-size: 0.88rem;
    }

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

    .about-visual {
        grid-template-columns: 1fr 1fr;
    }
}
