:root {
    --primary-color: #00134d;
    --primary-light: #001e7a;
    --accent-color: #fcc701;
    --accent-hover: #e5b601;
    --text-white: #fff;
    --text-gray: #dfdfdf;
    --text-dark-gray: #6b7280;
    --bg-light: #f8fafc;
    --transition-smooth: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.2s ease;
    --shadow-premium: 0 10px 30px -10px rgba(0, 19, 77, 0.15);
}

body {
    margin: 0;
    padding: 0;
    font-family: "Open Sans", sans-serif;
    padding-top: 80px;
    line-height: 1.6;
    color: #1f2937;
    background-color: #fff;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

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

.logo-img {
    width: 44px;
    height: 44px;
    border-radius: 4px;
    object-fit: cover;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.brand {
    color: var(--primary-color);
    font-size: 22px;
    font-weight: 700;
    line-height: 1.1;
}

.sub {
    font-size: 11px;
    color: var(--text-dark-gray);
    font-weight: 500;
    margin-top: 2px;
}

h1, h2, h3, h4, h5, h6 {
    font-family: "Poppins", sans-serif;
    margin-top: 0;
}

p {
    font-size: 18px;
    margin-top: 0;
    margin-bottom: 1rem;
}

/* Header fixed */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0,0,0,0.06);
    z-index: 1000;
    height: 80px;
    display: flex;
    align-items: center;
    transition: var(--transition-smooth);
}

.header-container {
    max-width: 1700px;
    width: 100%;
    margin: 0 auto;
    padding: 0 5%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-and-cta {
    display: flex;
    align-items: center;
    gap: 48px; /* Controla a distância entre a nav e o botão */
}

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

.nav-links a {
    text-decoration: none;
    color: var(--text-dark-gray);
    font-weight: 500;
    font-size: 15px;
    transition: color 0.3s ease;
    position: relative;
    padding-bottom: 4px;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: var(--accent-color);
    border-radius: 2px;
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

.nav-links a:hover::after {
    transform: scaleX(1);
    background-color: var(--primary-color);
}

.nav-links a.active {
    color: var(--primary-color);
    font-weight: 700;
}

.nav-links a.active::after {
    transform: scaleX(1);
    background-color: var(--accent-color);
    box-shadow: 0 0 12px rgba(252, 199, 1, 0.6);
}

.header-whatsapp {
    display: flex;
    align-items: center;
    background-color: var(--primary-color);
    color: var(--text-white);
    padding: 10px 24px;
    border-radius: 8px; /* Unified radius */
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
}

.header-whatsapp:hover {
    background-color: #000c33;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.mobile-menu-toggle span {
    width: 100%;
    height: 3px;
    background-color: var(--primary-color);
    border-radius: 3px;
    transition: all 0.3s ease;
}

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

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

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

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: var(--text-white);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateX(100%);
    transition: transform 0.4s ease-in-out;
}

.mobile-menu-overlay.active {
    transform: translateX(0);
}

.mobile-menu-content {
    text-align: center;
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 40px;
}

.mobile-nav-links a {
    text-decoration: none;
    color: var(--primary-color);
    font-size: 24px;
    font-weight: 700;
}

.mobile-whatsapp {
    justify-content: center;
    font-size: 18px;
    padding: 14px 30px;
    margin-top: 10px;
}

.hero {
    min-height: 90vh;
    background-color: #00134d;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.hero-container {
    width: 100%;
    max-width: 1700px;
    margin: 0 auto;
    position: relative;
    z-index: 5;
}

.hero-image-wrapper {
    position: absolute;
    top: 0;
    right: 0;
    width: 60%;
    height: 100%;
    z-index: 1;
}

.hero-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, #00134d 0%, #00134d 50%, rgba(0, 19, 77, 0) 80%);
    z-index: 2;
    pointer-events: none;
}

.hero h1 {
    color: var(--text-white);
    font-weight: 800;
    font-size: clamp(42px, 5vw, 72px); /* Responsive font size */
    line-height: 1.1;
    margin-top: 0;
    margin-bottom: 24px;
    letter-spacing: -1.5px;
}

.hero h4 {
    color: var(--text-gray);
    font-weight: 500;
    font-size: 24px;
    margin-top: 0;
    margin-bottom: 24px;
}

.hero h4 strong {
    color: var(--accent-color);
    font-weight: 700;
}

.hero p {
    color: var(--text-white);
    font-weight: 400;
    font-size: 18px;
    line-height: 1.6;
    margin-top: 0;
    margin-bottom: 40px;
    max-width: 700px; /* Increased from 600px */
}

.hero .box {
    max-width: 800px;
    margin-left: 0;
}

.button-groups button {
    padding: 18px 36px;
    border-radius: 8px; /* Unified radius */
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.primary {
    background: var(--accent-color);
    color: var(--primary-color);
    margin-right: 14px;
    border: none;
    box-shadow: 0 4px 14px rgba(252, 199, 1, 0.3);
}

.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(252, 199, 1, 0.5);
}

.secondary {
    background: transparent;
    border: 2px solid var(--text-white);
    color: var(--text-white);
}

.secondary:hover {
    background: rgba(255,255,255,0.1);
    transform: translateY(-2px);
}

/* Benefits Section */
.benefits {
    padding: 140px 5%;
    text-align: center;
    background-color: #fff;
}

.benefits h2 {
    color: var(--primary-color);
    font-size: 48px; /* Increased L2 header */
    font-weight: 800;
    margin-top: 0;
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.benefits-subtitle {
    font-size: 18px;
    color: var(--text-dark-gray);
    margin-bottom: 80px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.flex-benefits {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    max-width: 1500px;
    margin: 0 auto;
}

.benefits-card, .get-card {
    background-color: var(--text-white);
    padding: 48px 32px;
    border-radius: 20px;
    text-align: center;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
    border: 1px solid rgba(0, 19, 77, 0.05);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.icon-wrapper {
    width: 72px;
    height: 72px;
    background-color: rgba(252, 199, 1, 0.18); /* Clearly visible yellow always */
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    box-shadow: 0 4px 14px rgba(252, 199, 1, 0.08);
    position: relative;
    z-index: 1;
    transition: background-color 0.4s ease, box-shadow 0.4s ease;
}

.benefits-card:hover .icon-wrapper,
.get-card:hover .icon-wrapper {
    background-color: var(--primary-color);
    box-shadow: 0 8px 24px rgba(0, 19, 77, 0.2);
}

.benefits-card:hover .icon-wrapper svg,
.get-card:hover .icon-wrapper svg {
    stroke: #fff;
}

.icon-wrapper svg {
    width: 26px;
    height: 26px;
}

.benefits-card h3, .get-card h4 {
    color: var(--primary-color);
    font-size: 22px;
    font-weight: 700;
    margin-top: 0;
    margin-bottom: 16px;
}

.benefits-card p, .get-card p {
    color: #64748b;
    font-size: 16px;
    line-height: 1.6;
    font-weight: 400;
    margin: 0;
    text-align: center;
}

/* CTA Section */
.cta {
    background-color: #f3f7fb;
    padding: 100px 5%;
    text-align: center;
}

.cta-content {
    max-width: 1000px;
    margin: 0 auto;
}

.cta h2 {
    color: var(--primary-color);
    font-size: 52px;
    font-weight: 800;
    margin-top: 0;
    margin-bottom: 24px;
}

.cta p {
    color: #4b5563;
    font-size: 18px;
    line-height: 1.6;
    margin-top: 0;
    margin-bottom: 40px;
    max-width: 900px; /* Increased from 700px */
    margin-left: auto;
    margin-right: auto;
}

.cta-btn {
    font-weight: 800;
    font-size: 18px;
    padding: 18px 40px;
    border-radius: 8px; /* Unified radius */
    box-shadow: 0 4px 14px rgba(252, 199, 1, 0.4);
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    background-color: var(--accent-color);
    color: var(--primary-color);
}

.cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(252, 199, 1, 0.5);
}

.cta.dark-bg {
    background-color: var(--primary-color);
    color: var(--text-white);
}

.cta.dark-bg h2 {
    color: var(--text-white);
}

.cta.dark-bg p {
    color: #c4d0f2;
}

/* Footer */
footer {
    background-color: var(--primary-color);
    color: var(--text-white);
    padding: 80px 5% 40px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    max-width: 1500px;
    margin: 0 auto;
    flex-wrap: wrap;
    gap: 40px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-logo {
    flex: 2;
    min-width: 300px;
}

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

.logo-text {
    display: flex;
    flex-direction: column;
}

.brand {
    font-size: 28px;
    font-weight: 800;
    line-height: 1.1;
}

.sub {
    font-size: 11px;
    color: #aebce8;
    font-weight: 500;
    margin-top: 4px;
}

.footer-links, .footer-contact {
    flex: 1;
    min-width: 200px;
}

.footer-links h4, .footer-contact h4 {
    font-size: 20px;
    font-weight: 700;
    margin-top: 0;
    margin-bottom: 24px;
}

.footer-links ul, .footer-contact ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li, .footer-contact li {
    margin-bottom: 20px;
    color: #c4d0f2;
    font-size: 16px;
    display: flex;
    align-items: center;
    transition: var(--transition-fast);
}

.footer-contact svg {
    flex-shrink: 0;
    margin-right: 16px !important;
    transition: transform 0.3s ease;
}

.footer-contact li:hover svg {
    transform: scale(1.2);
    color: var(--text-white) !important;
}

.footer-links a, .footer-contact a {
    color: #c4d0f2;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-links a:hover, .footer-contact a:hover {
    color: var(--text-white);
}

.footer-bottom {
    max-width: 1100px;
    margin: 40px auto 0;
    text-align: center;
}

.footer-bottom p {
    color: #c4d0f2;
    font-size: 14px;
    margin: 0;
}

/* WhatsApp Button */
.whatsapp-btn {
    position: fixed;
    bottom: 15px;
    right: 15px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 2000;
    transition: transform 0.3s, background-color 0.3s;
    text-decoration: none;
}

.whatsapp-btn:hover {
    transform: scale(1.1);
    background-color: #20ba5a;
}

.whatsapp-btn svg {
    fill: white;
}

/* About Page Specific Styles */
.about-hero {
    background-color: #f3f7fb;
    padding: 120px 5% 60px; /* Reduced vertical breathing room */
    text-align: left;
}

.about-container {
    max-width: 1700px; /* Increased for a more spacious layout */
    margin: 0 auto;
}

.about-hero h1 {
    color: var(--primary-color);
    font-size: 64px;
    font-weight: 800;
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.about-hero p {
    color: #4b5563;
    font-size: 18px;
    max-width: 800px;
    line-height: 1.6;
}

.about-main {
    padding: 60px 5%; /* Reduced from 100px */
}

.about-container.split {
    display: flex;
    gap: 60px; /* Reduzido para dar mais espaço aos blocos */
    align-items: flex-start;
}

.about-text {
    flex: 1; /* Balanced with card */
}

.about-text h2 {
    color: var(--primary-color);
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 32px;
    letter-spacing: -0.5px;
}

.about-text p {
    color: #4b5563;
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 24px;
}

.approach-card {
    flex: 1; /* Card wider as requested */
    background-color: #1a36a3;
    color: white;
    padding: 50px;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.approach-card h3 {
    font-size: 28px;
    font-weight: 800; /* Unified with other headings */
    margin-bottom: 30px;
}

.approach-item {
    margin-bottom: 24px;
}

.approach-item h4 {
    color: var(--accent-color);
    font-size: 18px;
    font-weight: 400; /* Regular weight as requested */
    margin-bottom: 10px;
}

.approach-item p {
    color: #cbd5e1;
    font-size: 18px; /* Unified text size */
    line-height: 1.6;
}

.what-you-get {
    padding: 60px 5% 100px;
}

.what-you-get-box {
    background-color: #f3f7fb;
    padding: 60px 40px;
    border-radius: 12px;
}

.section-title {
    color: var(--primary-color);
    font-size: 38px;
    font-weight: 800;
    margin-bottom: 50px;
    text-align: left;
}

.get-grid {
    display: grid;
    grid-template-columns: 1fr 1fr; /* Force 2x2 */
    gap: 60px 80px;
}

.get-card h4 {
    color: var(--primary-color);
    font-size: 24px;
    font-weight: 600; /* As requested for this section */
    margin-bottom: 20px;
}

.get-card p {
    color: #4b5563;
    font-size: 18px;
    line-height: 1.7;
}

.cta.dark-bg {
    background-color: var(--primary-color);
    color: white;
}

.cta.dark-bg h2 {
    color: white;
}

.cta.dark-bg p {
    color: #c4d0f2;
}

/* Service Page Specific Styles */
.service-detail {
    padding: 60px 5%; /* Reduced from 100px */
}

.service-detail.alt {
    background-color: #f8fafc;
}

.service-main {
    flex: 1.2;
}

.service-icon-box {
    width: 72px;
    height: 72px;
    background-color: #fff;
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 32px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
    position: relative;
}

.service-icon-box::before {
    content: '';
    position: absolute;
    inset: -4px;
    background: rgba(252, 199, 1, 0.1);
    border-radius: 50%;
    z-index: -1;
    opacity: 0.5;
}

.service-icon-box.right {
    margin-left: 0;
}

.check-list {
    list-style: none;
    padding: 0;
    margin-top: 32px;
}

.check-list li {
    position: relative;
    padding-left: 32px;
    margin-bottom: 16px;
    color: #4b5563;
    font-size: 17px;
    line-height: 1.5;
}

.check-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    width: 22px;
    height: 22px;
    background-color: transparent;
    border: 2px solid var(--accent-color);
    color: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 800;
}

.indicated-box {
    flex: 0.8;
    background-color: #f3f7fb;
    padding: 40px;
    border-radius: 12px;
}

.indicated-box h3 {
    color: var(--primary-color);
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 20px;
}

.indicated-box ul {
    list-style: none;
    padding: 0;
}

.indicated-box li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 12px;
    color: #4b5563;
    font-size: 16px;
}

.indicated-box li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 8px;
    height: 8px;
    background-color: var(--accent-color);
    border-radius: 50%;
}

/* Process Section */
.process-section {
    padding: 100px 5%;
}

.section-title.centered {
    text-align: center;
    margin-bottom: 64px;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
}

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

.step-number {
    width: 60px; /* Larger circular badge */
    height: 60px;
    background-color: var(--primary-color);
    color: var(--accent-color); /* Yellow number on blue circle for contrast */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 800;
    margin: 0 auto 32px;
    box-shadow: 0 4px 15px rgba(0, 19, 77, 0.2);
}

.process-step h4 {
    color: var(--primary-color);
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 16px;
}

.process-step p {
    color: #4b5563;
    font-size: 18px;
    line-height: 1.6;
}

/* Contact Page Specific Styles */
.contact-methods {
    padding: 80px 5%;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

.contact-card {
    background-color: #f8fafc;
    padding: 48px 32px;
    border-radius: 16px;
    text-align: center;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
}

.contact-icon-circle {
    width: 72px;
    height: 72px;
    background-color: rgba(0, 19, 77, 0.10); /* Visible blue tint always */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    transition: background-color 0.4s ease, box-shadow 0.4s ease;
}

.contact-card:hover .contact-icon-circle {
    background-color: var(--primary-color);
    box-shadow: 0 8px 24px rgba(0, 19, 77, 0.2);
}

.contact-card:hover .contact-icon-circle svg {
    stroke: #fff !important;
}

/* WhatsApp card: always green tint */
.contact-card.wa-card .contact-icon-circle {
    background-color: rgba(37, 211, 102, 0.18); /* Clearly visible green always */
}

.contact-card.wa-card:hover .contact-icon-circle {
    background-color: #25D366;
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.3);
}

/* Internal Card Stagger - removed child opacity rule to prevent icon background conflicts */

.revealed > *:nth-child(1) { transition-delay: 0.05s; }
.revealed > *:nth-child(2) { transition-delay: 0.1s; }
.revealed > *:nth-child(3) { transition-delay: 0.15s; }
.revealed > *:nth-child(4) { transition-delay: 0.2s; }

.contact-card h3 {
    color: var(--primary-color);
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
}

.contact-card p {
    color: #64748b;
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 16px;
    max-width: 260px;
}

.contact-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    transition: var(--transition-fast);
}

.contact-info-text {
    color: #4b5563;
    font-size: 15px;
    display: block;
    margin-top: 10px;
}

/* FAQ Section */
.faq-section {
    padding: 100px 5%;
    background-color: #fff;
}

.faq-grid {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background-color: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    margin-bottom: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-question {
    padding: 24px 32px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    background: none;
    border: none;
    text-align: left;
}

.faq-question h4 {
    color: var(--primary-color);
    font-size: 19px;
    font-weight: 600;
    margin-bottom: 0;
    transition: color 0.3s ease;
}

.faq-icon {
    width: 24px;
    height: 24px;
    position: relative;
    transition: transform 0.3s ease;
}

.faq-icon::before, .faq-icon::after {
    content: '';
    position: absolute;
    background-color: var(--primary-color);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.faq-icon::before {
    width: 14px;
    height: 2px;
}

.faq-icon::after {
    width: 2px;
    height: 14px;
    transition: opacity 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-item.active .faq-icon::after {
    opacity: 0;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease;
    background-color: #f9fafb;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 32px 32px;
}

.faq-answer p {
    color: #4b5563;
    font-size: 18px;
    line-height: 1.6;
    margin: 0;
}

/* About Page Mobile Responsive */
@media (max-width: 992px) {
    .about-container.split {
        flex-direction: column;
        gap: 48px;
    }
    
    .about-hero h1 {
        font-size: 40px;
    }
    
    .about-text h2 {
        font-size: 28px;
    }

    .what-you-get-box {
        padding: 40px 20px;
    }

    .get-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .service-detail .about-container.split {
        flex-direction: column;
        gap: 40px;
    }

    .indicated-box {
        width: 100%;
        box-sizing: border-box;
    }

    .service-detail.alt .about-container.split {
        flex-direction: column-reverse;
    }
}

/* Global Animations & Transitions */
:root {
    --transition-smooth: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1); /* Bouncier, more fluid */
    --transition-fast: all 0.2s ease;
}

.reveal-init {
    opacity: 0;
    transform: translateY(40px) scale(0.95); /* Added slight scale */
    transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1), transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.revealed {
    opacity: 1;
    transform: translateY(0) scale(1);
}

/* Highlight & Glow Effects */
.highlight-glow {
    background: linear-gradient(90deg, var(--accent-color) 0%, #ff9d00 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    position: relative;
    z-index: 1;
}



.highlight-brand {
    color: var(--primary-color);
}

/* Staggered Animation Delays */
.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }
.stagger-4 { transition-delay: 0.4s; }

/* Premium Button Hover */
.header-whatsapp, .cta-btn, .button-groups button {
    transition: var(--transition-smooth) !important;
    position: relative;
    overflow: hidden;
}

.header-whatsapp:hover, .cta-btn:hover, .button-groups button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.header-whatsapp::after, .cta-btn::after, .button-groups button::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: 0.5s;
}

.header-whatsapp:hover::after, .cta-btn:hover::after, .button-groups button:hover::after {
    left: 100%;
}

/* Card Hover Effects */
.contact-card, .benefits-card, .get-card, .approach-card {
    transition: var(--transition-smooth);
}

.contact-card:hover, .benefits-card:hover, .get-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 19, 77, 0.08);
}

.box.reveal-init {
    transition-delay: 0.2s;
}

.flex-benefits .benefits-card:nth-child(2) {
    transition-delay: 0.15s;
}

.flex-benefits .benefits-card:nth-child(3) {
    transition-delay: 0.3s;
}

.process-step:nth-child(2) { transition-delay: 0.15s; }
.process-step:nth-child(3) { transition-delay: 0.3s; }
.process-step:nth-child(4) { transition-delay: 0.45s; }

/* Responsive Media Queries */
@media (max-width: 1024px) {
    .header-container {
        padding: 0 5%;
    }
    
    .desktop-nav {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
}

@media (max-width: 768px) {
    /* ── Mobile Center Alignment ── */
    h1, h2, h3, h4, h5, h6,
    p,
    .about-text h2,
    .about-text p,
    .approach-item h4,
    .approach-item p,
    .service-main h2,
    .service-main p,
    .indicated-box h3,
    .contact-card h3,
    .contact-card p,
    .benefits-subtitle,
    .faq-question h4,
    .about-hero p,
    .section-title {
        text-align: center;
    }

    .about-text,
    .service-main,
    .about-hero > div {
        text-align: center;
    }

    /* Keep lists left-aligned but centered block */
    .check-list,
    .indicated-box ul,
    .footer-contact ul,
    .footer-links ul {
        text-align: left;
        display: inline-block;
    }

    /* Center flex containers */
    .approach-item,
    .about-text,
    .service-main {
        align-items: center;
    }

    .contact-link {
        display: block;
        text-align: center;
    }

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

    /* ── Overflow & Layout Fixes ── */
    body, html {
        overflow-x: hidden;
    }

    /* Approach card: less padding on mobile */
    .approach-card {
        padding: 28px 24px;
        width: 100%;
        box-sizing: border-box;
    }

    /* What you receive: remove heavy padding */
    .what-you-get-box {
        padding: 0; /* Total removal as requested */
        background-color: transparent;
        border-radius: 0;
    }

    .what-you-get-box .section-title {
        margin-bottom: 30px; /* Tighter title margin */
    }

    /* CTA button: prevent overflow */
    .cta-btn {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        font-size: 16px;
        padding: 16px 20px;
    }

    /* Service & Contact sections: prevent overflow */
    .service-detail,
    .contact-methods,
    .faq-section,
    .process-section {
        overflow: hidden;
        box-sizing: border-box;
        width: 100%;
    }

    .about-container,
    .about-container.split {
        width: 100%;
        box-sizing: border-box;
        overflow: hidden;
    }

    /* Service icon: center on mobile */
    .service-icon-box,
    .service-icon-box.right {
        margin-left: auto !important;
        margin-right: auto !important;
    }

    body {
        padding-top: 70px;
    }
    
    .header {
        height: 70px;
    }

    .logo-flex {
        gap: 8px;
        flex-shrink: 1;
        min-width: 0;
    }

    .logo-text .brand {
        font-size: 18px;
        font-weight: 700;
    }

    .logo-text .sub {
        font-size: 9px;
        line-height: 1.2;
        letter-spacing: 0.2px;
    }

    .mobile-menu-toggle {
        flex-shrink: 0;
    }
    
    .hero {
        padding: 40px 0;
        text-align: center;
    }
    
    .hero .box {
        margin: 0 auto;
        padding: 0 5%;
    }
    
    .hero h1 {
        font-size: 34px;
        line-height: 1.2;
    }
    
    .hero h4 {
        font-size: 16px;
    }
    
    .hero-image-wrapper {
        width: 100%;
        right: 0;
        opacity: 0.6;
        mix-blend-mode: overlay;
    }
    
    .hero::after {
        background: linear-gradient(to bottom, rgba(0, 19, 77, 0.7) 0%, #00134d 100%);
    }
    
    .hero p {
        font-size: 14px;
        margin-bottom: 24px;
    }
    
    .button-groups {
        display: flex;
        flex-direction: column;
        gap: 12px;
    }
    
    .button-groups button {
        margin-right: 0;
        width: 100%;
        font-size: 16px;
        padding: 14px;
    }
    
    .benefits {
        padding: 40px 5%;
    }
    
    .benefits h2 {
        font-size: 28px;
        margin-bottom: 16px;
        line-height: 1.3;
    }

    .benefits-subtitle {
        font-size: 16px;
        color: #6b7280;
        margin-bottom: 30px;
        text-align: center;
    }
    
    .flex-benefits {
        flex-direction: column;
        gap: 30px;
    }
    
    .benefits-card, .get-card {
        max-width: 100%;
        padding: 16px; /* Minimal padding as requested */
    }

    .benefits-card h3 {
        font-size: 18px;
    }

    .benefits-card p {
        font-size: 15px;
    }
    
    .cta {
        padding: 40px 5%;
    }
    
    .cta h2 {
        font-size: 28px;
        margin-bottom: 16px;
        line-height: 1.3;
    }
    
    .cta p {
        font-size: 15px;
        margin-bottom: 32px;
        line-height: 1.5;
    }

    .cta-btn {
        width: 100%;
        font-size: 16px;
        padding: 14px;
    }
    
    footer {
        padding: 40px 5% 20px;
        text-align: center;
    }
    
    .footer-content {
        flex-direction: column;
        align-items: center;
        gap: 40px;
        text-align: center;
    }
    
    .footer-logo {
        min-width: unset;
        width: 100%;
        display: flex;
        justify-content: center;
    }
    
    .footer-logo img {
        max-width: 100px !important;
    }
    
    .footer-links, .footer-contact {
        width: 100%;
        min-width: unset;
    }
    
    .footer-links li, .footer-contact li {
        justify-content: center;
    }
    
    .footer-bottom p {
        font-size: 12px;
    }

    /* Additional Responsive Grids */
    .contact-grid, .get-grid, .process-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .about-hero {
        padding: 60px 5%;
    }

    .about-hero h1 {
        font-size: 32px;
    }

    .faq-question {
        padding: 20px;
    }

    .faq-question h4 {
        font-size: 16px;
    }

    .faq-item.active .faq-answer {
        padding: 0 20px 20px;
    }
}