:root {
    --primary-green: #caa143;
    --primary-blue: #1a2235;
    --primary-blue-dark: #0e1422;
    --accent-gold: #caa143;
    --accent-gold-dark: #a27f33;
    --accent-gold-soft: #f6edd8;
    --surface-coal: #121722;
    --surface-coal-light: #1b2230;
    --text-dark: #1f2937;
    --text-gray: #6b7280;
    --bg-light: #edf1f5;
    --white: #ffffff;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --border-radius: 24px;
    --section-space: clamp(64px, 6.8vw, 88px);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    line-height: 1.5;
    background-color: #f0f3f7;
    overflow-x: hidden;
    min-width: 320px;
}

body.menu-open {
    overflow: hidden;
}

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

ul {
    list-style: none;
}

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

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(244, 247, 252, 0.92);
    backdrop-filter: blur(12px);
    z-index: 1000;
    padding: 12px 0;
    border-bottom: 1px solid rgba(0, 26, 87, 0.08);
    transition: var(--transition);
}

header.scrolled {
    padding: 8px 0;
    box-shadow: var(--shadow-md);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
}

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

.logo-text {
    font-size: 28px;
    font-weight: 800;
    color: var(--primary-blue);
    letter-spacing: -0.5px;
}

.logo-text span {
    color: var(--primary-green);
}

nav ul {
    display: flex;
    gap: 24px;
    align-items: center;
}

nav ul li a {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
    opacity: 0.8;
}

nav ul li a:hover {
    color: var(--accent-gold-dark);
    opacity: 1;
}

.header-actions {
    display: flex;
    gap: 16px;
    align-items: center;
}

.btn-client {
    font-weight: 700;
    font-size: 14px;
    color: var(--accent-gold-dark);
    padding: 8px 16px;
    border-radius: 8px;
    background: rgba(202, 161, 67, 0.16);
    border: 1px solid rgba(202, 161, 67, 0.3);
}

.btn-client:hover {
    background: rgba(202, 161, 67, 0.24);
}

.btn-whatsapp {
    background-color: var(--primary-green);
    color: var(--white) !important;
    padding: 10px 24px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    font-size: 14px;
    box-shadow: 0 4px 14px rgba(202, 161, 67, 0.35);
}

.btn-whatsapp:hover {
    background-color: var(--accent-gold-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(202, 161, 67, 0.42);
}

.whatsapp-float {
    position: fixed;
    right: 18px;
    bottom: calc(18px + env(safe-area-inset-bottom));
    z-index: 998;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #22c55e;
    color: var(--white) !important;
    padding: 12px 16px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 800;
    box-shadow: 0 10px 24px rgba(34, 197, 94, 0.35);
}

.whatsapp-float:hover {
    background: #16a34a;
    transform: translateY(-2px);
}

.whatsapp-float i {
    width: 18px;
    height: 18px;
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 1001;
    padding: 10px;
}

.menu-toggle span {
    width: 25px;
    height: 2px;
    background: var(--primary-blue);
    border-radius: 3px;
    transition: var(--transition);
}

.menu-toggle.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* Sections Global */
section {
    padding: var(--section-space) 0;
    position: relative;
}

.section-tag {
    color: var(--primary-blue-dark);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    display: inline-block;
    margin-bottom: 16px;
    padding: 4px 12px;
    background: var(--accent-gold-soft);
    border: 1px solid rgba(202, 161, 67, 0.3);
    border-radius: 50px;
    max-width: 100%;
    white-space: normal;
    text-wrap: balance;
}

.section-title {
    font-size: clamp(34px, 3.9vw, 48px);
    font-weight: 800;
    color: var(--primary-blue);
    margin-bottom: 20px;
    line-height: 1.1;
    letter-spacing: -1px;
}

.section-desc {
    color: var(--text-gray);
    font-size: clamp(15px, 1.5vw, 17px);
    max-width: 640px;
    margin-bottom: 36px;
    line-height: 1.6;
}

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

.text-center .section-desc {
    margin-left: auto;
    margin-right: auto;
}

/* Hero */
.hero {
    padding-top: 146px;
    padding-bottom: 84px;
    background: linear-gradient(180deg, #ebeff4 0%, #f4f6f9 100%);
    overflow: hidden;
}

.hero .container {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
    gap: 30px;
    align-items: flex-start;
}

.hero .container > *,
.about .container > *,
.contact .container > * {
    min-width: 0;
}

.hero-content {
    min-width: 0;
    background: var(--white);
    
    border-radius: 24px;
    padding: 40px 34px 28px;
   
}

.hero-content h1 {
    font-size: clamp(42px, 5.2vw, 52px);
    font-weight: 800;
    color: var(--primary-blue);
    line-height: 1;
    margin-bottom: 20px;
    letter-spacing: -1.2px;
    /* max-width: 13ch; */
    overflow-wrap: anywhere;
}

.hero-content h1 span {
    color: var(--accent-gold-dark);
}

.hero-content p {
    font-size: clamp(16px, 1.5vw, 18px);
    color: #596273;
    margin-bottom: 22px;
    max-width: 54ch;
    line-height: 1.55;
}

.hero-points {
    display: grid;
    gap: 8px;
    margin-bottom: 20px;
}

.hero-points li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    color: #3c4657;
    font-weight: 600;
    line-height: 1.45;
}

.hero-points i {
    width: 16px;
    height: 16px;
    color: var(--accent-gold-dark);
    margin-top: 2px;
    flex-shrink: 0;
}

.hero-btns {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 20px;
}

.btn-primary {
    background-color: var(--primary-green);
    color: var(--primary-blue-dark);
    padding: 16px 30px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 16px;
    box-shadow: 0 10px 25px rgba(202, 161, 67, 0.28);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(202, 161, 67, 0.38);
}

.btn-secondary {
    background-color: var(--primary-blue);
    color: var(--white);
    padding: 16px 30px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 16px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-secondary:hover {
    transform: translateY(-3px);
    background-color: var(--primary-blue-dark);
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    padding-top: 18px;
    border-top: 1px solid rgba(0, 26, 87, 0.1);
}

.stat-item {
    background: #f7f8fb;
    padding: 12px 10px;
    border-radius: 12px;
    border: 1px solid rgba(0, 26, 87, 0.06);
    min-width: 0;
}

.stat-item h4 {
    color: var(--primary-blue);
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 4px;
    letter-spacing: 0.5px;
}

.stat-item p {
    font-size: 12px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0;
    line-height: 1.28;
}

.hero-image {
    position: relative;
    z-index: 1;
    min-width: 0;
    border-radius: 24px;
    background: linear-gradient(160deg, var(--surface-coal) 0%, var(--surface-coal-light) 100%);
    border: 1px solid rgba(202, 161, 67, 0.25);
    padding: 12px;
    box-shadow: 0 22px 42px rgba(11, 19, 35, 0.32);
}

.hero-media {
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-self: flex-start;
}

.hero-image-main {
    border-radius: 16px;
    width: 100%;
    height: auto;
    background: var(--bg-light);
    border: 1px solid rgba(202, 161, 67, 0.24);
}

.floating-card {
    position: static;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    background: #1d1d1d;
    color: var(--white);
    border: 1px solid rgba(202, 161, 67, 0.34);
    padding: 14px 16px;
    border-radius: 14px;
    width: 100%;
    max-width: none;
    box-shadow: 0 14px 30px rgba(7, 12, 24, 0.4);
}

.floating-main {
    min-width: 0;
}

.floating-kicker {
    display: inline-block;
    margin-bottom: 6px;
    padding: 4px 10px;
    border-radius: 999px;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 800;
    color: var(--accent-gold);
    background: rgba(202, 161, 67, 0.12);
}

.floating-card h3 {
    font-size: clamp(36px, 4vw, 46px);
    font-weight: 800;
    margin: 0;
    line-height: 0.98;
    letter-spacing: -0.6px;
    color: var(--accent-gold);
}

.floating-btn {
    flex-shrink: 0;
    background: var(--accent-gold-dark);
    color: var(--primary-blue-dark);
    font-size: 14px;
    font-weight: 800;
    padding: 10px 18px;
    border-radius: 999px;
    border: 1px solid rgba(202, 161, 67, 0.5);
}

.floating-btn:hover {
    background: var(--accent-gold);
    color: var(--surface-coal);
}

/* Features */
.features {
    background-color: var(--white);
}

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

.feature-card {
    background: var(--white);
    padding: 30px 24px;
    border-radius: var(--border-radius);
    border: 1px solid rgba(0,0,0,0.05);
    transition: var(--transition);
    min-width: 0;
}

.feature-card:hover {
    border-color: rgba(202, 161, 67, 0.55);
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.feature-icon {
    width: 48px;
    height: 48px;
    background: rgba(202, 161, 67, 0.14);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    padding: 10px;
    color: var(--accent-gold-dark);
}

.feature-card h3 {
    font-size: 20px;
    font-weight: 800;
    color: var(--primary-blue);
    margin-bottom: 16px;
}

.feature-card p {
    color: var(--text-gray);
    font-size: 14px;
    line-height: 1.6;
}

.wide-banner {
    background: linear-gradient(145deg, var(--surface-coal) 0%, var(--surface-coal-light) 100%);
    border: 1px solid rgba(202, 161, 67, 0.28);
    border-radius: var(--border-radius);
    padding: 28px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    color: var(--white);
}

.wide-banner h4 {
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 8px;
    color: var(--accent-gold);
}

.wide-banner p {
    font-size: 15px;
    opacity: 0.9;
    font-weight: 500;
}

.btn-banner {
    background-color: var(--accent-gold);
    color: var(--surface-coal);
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 800;
    flex-shrink: 0;
}

.btn-banner:hover {
    background-color: var(--accent-gold-dark);
    transform: scale(1.05);
}

/* About */
.about {
    background-color: var(--bg-light);
}

.about .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
}

.about-list {
    margin-top: 32px;
    margin-bottom: 40px;
}

.about-list li {
    display: flex;
    gap: 16px;
    margin-bottom: 18px;
    font-weight: 600;
    font-size: 16px;
    color: var(--primary-blue);
}

.about-list i {
    color: var(--accent-gold-dark);
    flex-shrink: 0;
}

.about-cards {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.info-card {
    background: var(--white);
    padding: 24px;
    border-radius: 20px;
    display: flex;
    gap: 24px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.info-card:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-md);
}

.info-card.dark {
    background: var(--primary-blue);
    color: var(--white);
}

.info-card h5 {
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 6px;
    letter-spacing: 1px;
    opacity: 0.7;
}

.info-card p.title {
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 6px;
}

.info-card p.desc {
    font-size: 15px;
    color: var(--text-gray);
    line-height: 1.5;
}

.info-card.dark p.desc {
    color: rgba(255, 255, 255, 0.7);
}

/* Services */
.services-boxes {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 32px;
}

.service-box {
    padding: 36px 28px;
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.service-box:hover {
    transform: translateY(-10px);
}

.service-box.green {
    background: var(--accent-gold-soft);
}

.service-box.blue {
    background: #f3f5f8;
}

.service-box .tag {
    display: inline-block;
    padding: 6px 16px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.service-box.green .tag { background: var(--accent-gold-dark); color: var(--white); }
.service-box.blue .tag { background: var(--surface-coal); color: var(--white); }

.service-box h3 {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--primary-blue);
    line-height: 1.2;
}

.service-box p {
    color: var(--text-gray);
    margin-bottom: 24px;
    font-size: 16px;
    line-height: 1.6;
}

.btn-link {
    color: var(--primary-blue);
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
}

.btn-link:hover i {
    transform: translateX(5px);
}

/* Pricing */
.pricing {
    background-color: var(--white);
}

.pricing-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    margin: 48px auto 0;
    max-width: 1140px;
}

.pricing-card {
    width: 100%;
    background: var(--white);
    border-radius: 40px;
    border: 1px solid rgba(0,0,0,0.08);
    overflow: hidden;
    position: relative;
    box-shadow: var(--shadow-xl);
    display: flex;
    flex-direction: column;
    transition: var(--transition);
}

.pricing-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-gold-dark);
}

.pricing-badge {
    position: absolute;
    top: 45px;
    right: -35px;
    background: var(--accent-gold-dark);
    color: var(--white);
    text-align: center;
    padding: 8px 40px;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    transform: rotate(45deg);
}

.pricing-content {
    padding: 42px;
}

.pricing-header {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-end;
    gap: 20px;
    margin-bottom: 36px;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    padding-bottom: 24px;
}

.pricing-header > div:first-child {
    min-width: 0;
    /* flex: 1 1 280px; */
}

.pricing-header h3 {
    font-size: clamp(28px, 2vw, 36px);
    font-weight: 800;
    color: var(--primary-blue);
    line-height: 1.08;
    letter-spacing: -0.02em;
}

.price {
    display: inline-flex;
    align-items: flex-end;
    gap: 8px;
    font-size: clamp(46px, 3.2vw, 62px);
    font-weight: 900;
    color: var(--primary-blue);
    line-height: 1;
    white-space: nowrap;
    flex-shrink: 0;
    margin-left: auto;
}

.price span {
    font-size: 0.48em;
    color: var(--text-gray);
    font-weight: 600;
    line-height: 1;
    margin-bottom: 6px;
}

.pricing-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    margin-bottom: 36px;
}

.pricing-features {
    width: 100%;
    display: grid;
    gap: 10px;
    margin: 0;
    padding: 0;
}

.pricing-features li {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 14px 18px;
    margin: 0;
    background: var(--bg-light);
    border-radius: 16px;
    font-weight: 700;
    font-size: 15px;
    color: var(--primary-blue);
}

.btn-cta {
    display: block;
    text-align: center;
    background: var(--accent-gold-dark);
    color: var(--white);
    padding: 24px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 20px;
    box-shadow: 0 10px 20px rgba(202, 161, 67, 0.28);
}

.btn-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(202, 161, 67, 0.38);
}

/* Contact */
.contact {
    background-color: var(--bg-light);
}

.contact .container {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
    gap: 34px;
    align-items: start;
}

.contact-info-side .section-tag {
    margin-bottom: 12px;
}

.contact-info-side .section-title {
    margin-bottom: 12px;
    line-height: 1.03;
    /* max-width: 15ch; */
}

.contact-info-side .section-desc {
    margin-bottom: 24px;
    max-width: 52ch;
}

.contact-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 24px;
}

.contact-card {
    background: var(--white);
    padding: 20px;
    border-radius: 24px;
    box-shadow: var(--shadow-sm);
}

.contact-card h4 {
    font-size: 14px;
    font-weight: 800;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.contact-card a {
    font-size: 18px;
    font-weight: 800;
    color: var(--primary-blue);
}

.contact-card p {
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.5;
    font-weight: 600;
}

.contact-form {
    background: var(--white);
    padding: 30px 26px;
    border-radius: 32px;
    box-shadow: var(--shadow-xl);
    min-width: 0;
    align-self: start;
}

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

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

label {
    display: block;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--text-gray);
    margin-bottom: 10px;
    letter-spacing: 0.5px;
}

input, select, textarea {
    width: 100%;
    padding: 18px;
    border-radius: 16px;
    border: 1px solid rgba(0,0,0,0.08);
    background: var(--bg-light);
    outline: none;
    font-family: inherit;
    font-size: 15px;
    transition: var(--transition);
}

input:focus, select:focus, textarea:focus {
    border-color: var(--accent-gold-dark);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(202, 161, 67, 0.15);
}

.btn-submit {
    width: 100%;
    padding: 20px;
    background: var(--primary-blue);
    color: var(--white);
    border: none;
    border-radius: 16px;
    font-weight: 800;
    font-size: 17px;
    cursor: pointer;
    transition: var(--transition);
}

.btn-submit:hover {
    background: var(--primary-blue-dark);
    transform: translateY(-2px);
}

/* Footer */
footer {
    background: var(--primary-blue-dark);
    color: var(--white);
    padding: 64px 0 32px;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 32px;
    margin-bottom: 44px;
}

.footer-info {
    max-width: 400px;
}

.footer-info .logo-text {
    color: var(--white);
    margin-bottom: 24px;
    font-size: 28px;
}

.footer-info p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 15px;
    line-height: 1.6;
}

.footer-links .footer-title {
    margin-bottom: 24px;
    font-size: 16px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--white);
}

.footer-links ul li a {
    color: rgba(255, 255, 255, 0.75);
    font-size: 15px;
}

.footer-links ul li a:hover {
    color: var(--accent-gold);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 28px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 13px;
}

/* New semantic classes */
.stat-label {
    color: var(--primary-blue);
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 4px;
    letter-spacing: 0.5px;
}

.floating-price {
    font-size: clamp(36px, 4vw, 46px);
    font-weight: 800;
    margin: 0;
    line-height: 0.98;
    letter-spacing: -0.6px;
    color: var(--accent-gold);
}

.info-card-kicker {
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 6px;
    letter-spacing: 1px;
    opacity: 0.85;
}

.contact-card-title {
    font-size: 14px;
    font-weight: 800;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.social-links {
    display: flex;
    gap: 24px;
}

.social-links a {
    font-weight: 700;
}

.social-links a:hover {
    color: var(--accent-gold);
}

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

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

/* Responsive */
@media (max-width: 1200px) {
    .features-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .hero-content {
        padding: 34px 24px 22px;
    }

    .hero-content h1 {
        max-width: 100%;
    }

    .pricing-content {
        padding: 36px;
    }

    .pricing-header h3 {
        font-size: clamp(26px, 2.8vw, 32px);
    }

    .price {
        font-size: clamp(42px, 5.3vw, 54px);
    }
}

@media (max-width: 1024px) {
    .pricing-wrapper {
        grid-template-columns: 1fr;
        max-width: 600px;
        gap: 24px;
    }

    .hero .container, .about .container, .contact .container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .contact-info-side .section-title,
    .contact-info-side .section-desc {
        max-width: 100%;
    }

    .hero {
        padding-top: 124px;
        padding-bottom: 64px;
    }

    .hero-content {
        width: 100%;
        text-align: left;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }

    .hero-content p {
        max-width: 58ch;
    }

    .hero-btns {
        justify-content: flex-start;
    }

    .hero-image {
        max-width: 560px;
        margin: 0 auto;
    }

    .hero-media {
        gap: 10px;
        max-width: 560px;
        margin: 0 auto;
    }

    .about-content {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .about-list {
        text-align: left;
    }

    .about-content .btn-primary,
    .about-content .btn-secondary {
        justify-content: center;
    }

    .contact-cards {
        margin-top: 22px;
    }
}

@media (max-width: 768px) {
    section {
        padding: 54px 0;
    }

    header {
        padding: 12px 0;
    }

    .container {
        padding: 0 16px;
    }

    nav, .header-actions .btn-client {
        display: none;
    }

    .header-actions {
        gap: 4px;
    }

    .menu-toggle {
        display: flex;
        padding: 6px;
    }

    .btn-whatsapp {
        padding: 10px 18px;
        font-size: 15px;
    }

    .whatsapp-float {
        right: 14px;
        bottom: calc(14px + env(safe-area-inset-bottom));
        width: 52px;
        height: 52px;
        justify-content: center;
        padding: 0;
    }

    .whatsapp-float span {
        display: none;
    }

    .logo-text {
        font-size: 28px;
        line-height: 1.1;
    }

    .logo-text span {
        display: inline;
    }

    .hero {
        padding-top: 100px;
        padding-bottom: 48px;
    }

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

    .section-desc {
        margin-bottom: 28px;
    }

    .section-tag {
        font-size: 10px;
        letter-spacing: 1px;
        padding: 4px 10px;
    }

    .hero-content {
        padding: 24px 14px 16px;
        border-radius: 20px;
        border-left-width: 4px;
    }

    .hero-content h1 {
        font-size: clamp(20px, 8vw, 32px);
        letter-spacing: -1px;
        line-height: 1.04;
        max-width: 100%;
    }

    .hero-content p {
        font-size: 16px;
        margin-bottom: 14px;
        max-width: 100%;
    }

    .hero-points {
        margin-bottom: 16px;
        gap: 7px;
    }

    .hero-points li {
        font-size: 13px;
    }

    .hero-btns {
        flex-direction: column;
        width: 100%;
        margin-bottom: 16px;
    }

    .btn-primary, .btn-secondary {
        width: 100%;
        justify-content: center;
        padding: 15px 18px;
        font-size: 16px;
    }

    .hero-stats {
        gap: 8px;
        padding-top: 14px;
    }

    .stat-item {
        padding: 10px 8px;
    }

    .stat-item h4 {
        font-size: 10px;
    }

    .stat-item p {
        font-size: 12px;
    }

    .hero-image {
        padding: 10px;
        border-radius: 16px;
        margin-top: 6px;
    }

    .floating-card {
        margin-top: 0;
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .floating-card h3 {
        font-size: clamp(32px, 9vw, 40px);
    }

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

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

    .wide-banner {
        flex-direction: column;
        text-align: center;
        padding: 20px 14px;
    }

    .btn-banner {
        width: 100%;
    }

    .services-boxes {
        grid-template-columns: 1fr;
        margin-top: 24px;
    }

    .service-box {
        padding: 24px 16px;
    }

    .service-box h3 {
        font-size: 24px;
    }

    .pricing-card {
        border-radius: 24px;
        margin-top: 32px;
    }

    .pricing-content {
        padding: 20px 14px;
    }

    .pricing-badge {
        top: 16px;
        right: -48px;
        padding: 7px 36px;
        font-size: 10px;
    }

    .pricing-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
        margin-bottom: 18px;
        padding-bottom: 14px;
    }

    .pricing-header h3 {
        font-size: clamp(25px, 7.2vw, 32px);
    }

    .price {
        font-size: clamp(38px, 11vw, 48px);
    }

    .price span {
        margin-bottom: 4px;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        margin-bottom: 18px;
    }

    .pricing-features li {
        padding: 12px 14px;
        font-size: 14px;
    }

    .btn-cta {
        padding: 16px;
        font-size: 16px;
    }

    .contact-cards {
        grid-template-columns: 1fr;
        margin-top: 14px;
        gap: 14px;
    }

    .contact-info-side .section-title {
        line-height: 1.06;
    }

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

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

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

    footer {
        padding-top: 48px;
    }

    .footer-top {
        flex-direction: column;
        gap: 24px;
        margin-bottom: 30px;
    }

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

    .social-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 16px;
    }
}

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

    section {
        padding: 46px 0;
    }

    .hero {
        padding-top: 94px;
        padding-bottom: 40px;
    }

    .hero-content {
        padding: 22px 12px 14px;
    }

    .logo-text {
        font-size: 28px;
    }

    .btn-whatsapp {
        padding: 9px 14px;
        font-size: 14px;
    }

    .btn-whatsapp i {
        width: 16px;
        height: 16px;
    }

    .whatsapp-float {
        right: 12px;
        bottom: calc(12px + env(safe-area-inset-bottom));
    }

    .hero-stats {
        grid-template-columns: 1fr 1fr 1fr;
    }

    .stat-item p {
        font-size: 10px;
    }

    .hero-points li {
        font-size: 12px;
    }

    .pricing-header h3 {
        font-size: clamp(22px, 7.8vw, 28px);
    }

    .price {
        font-size: clamp(34px, 11.5vw, 42px);
        gap: 6px;
    }

    .mobile-nav a {
        font-size: 20px;
    }
}

/* Mobile Nav Overlay */
.mobile-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    min-height: 100vh;
    height: 100dvh;
    background: linear-gradient(180deg, rgba(14, 20, 34, 0.98) 0%, rgba(26, 34, 53, 0.96) 100%);
    z-index: 999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 24px;
    padding: calc(96px + env(safe-area-inset-top)) 20px calc(28px + env(safe-area-inset-bottom));
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-12px);
    transition: opacity 0.28s ease, transform 0.28s ease;
}

.mobile-nav.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
}

.mobile-nav a {
    color: var(--white);
    font-size: clamp(20px, 5.8vw, 22px);
    font-weight: 600;
    letter-spacing: 0.2px;
}

.mobile-nav a:not(.btn-whatsapp) {
    opacity: 0.96;
}

.mobile-nav a:not(.btn-whatsapp):hover,
.mobile-nav a:not(.btn-whatsapp):focus-visible {
    color: var(--accent-gold);
    opacity: 1;
}

.mobile-nav .btn-whatsapp {
    margin-top: 8px;
}

.about-btns {
    display: flex; 
    gap: 20px; 
    flex-wrap: wrap;
}

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

.icon-no-margin {
    margin-bottom: 0 !important;
}

.pricing-tag {
    margin-bottom: 10px;
}

.contact-card-full {
    margin-top: 20px; 
    width: 100%;
}

.btn-submit i {
    width: 18px; 
    display: inline; 
    vertical-align: middle; 
    margin-left: 8px;
}
