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

body {
    font-family: 'Delivery', 'Helvetica Neue', Arial, sans-serif;
    color: #333;
    background-color: #fff;
    line-height: 1.5;
    font-size: 16px;
}

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

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

a {
    color: #d40511;
    text-decoration: none;
}

a:hover { text-decoration: underline; }

h1, h2, h3, h4 { color: #1a1a1a; font-weight: 700; }

/* Top yellow bar */
.top-bar {
    background-color: #ffcc00;
    padding: 10px 0;
    border-bottom: 1px solid #e6b800;
}

.top-bar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-text {
    color: #d40511;
    font-weight: 900;
    font-size: 28px;
    letter-spacing: 1px;
    font-style: italic;
}

.logo a {
    display: inline-block;
    line-height: 0;
    text-decoration: none;
}

.dhl-logo {
    height: 22px;
    width: auto;
    display: block;
}

.top-bar-right { display: flex; gap: 24px; }

.top-link { color: #333; font-size: 14px; font-weight: 500; }
.top-link:hover { text-decoration: underline; }

.lang-switch {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(0,0,0,0.06);
    padding: 4px 10px;
    border-radius: 20px;
}
.lang-switch .lang {
    font-size: 13px;
    font-weight: 700;
    color: #5a3d00;
    padding: 2px 6px;
    border-radius: 12px;
    text-decoration: none;
    transition: background 0.15s, color 0.15s;
}
.lang-switch .lang:hover {
    color: #d40511;
    text-decoration: none;
}
.lang-switch .lang.active {
    background: #d40511;
    color: #fff;
}
.lang-sep { color: #aaa; font-size: 12px; }

/* Main nav */
.main-nav {
    background-color: #fff;
    border-bottom: 1px solid #e5e5e5;
    padding: 14px 0;
}

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

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

.nav-links a {
    color: #333;
    font-size: 14px;
    font-weight: 500;
}

.nav-links a:hover { color: #d40511; text-decoration: none; }
.nav-link-light { color: #666; font-size: 14px; }

/* Sub nav */
.sub-nav {
    background-color: #fafafa;
    border-bottom: 1px solid #e5e5e5;
    padding: 12px 0;
}

.sub-nav-inner { display: flex; align-items: center; gap: 24px; }

.sub-nav-label {
    background-color: #ffcc00;
    color: #333;
    font-weight: 700;
    font-size: 13px;
    padding: 6px 14px;
    letter-spacing: 0.5px;
}

.sub-nav-inner a { color: #333; font-size: 14px; }

/* Hero with image */
.hero-section {
    padding: 50px 0 30px;
    background-color: #fff;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.hero-text h1 {
    font-size: 48px;
    line-height: 1.05;
    margin-bottom: 18px;
}

.hero-subtitle {
    font-size: 17px;
    color: #555;
    line-height: 1.6;
}

.hero-image {
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 4px 18px rgba(0,0,0,0.08);
    aspect-ratio: 4 / 3;
}

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

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 28px;
    border: none;
    border-radius: 2px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    text-decoration: none;
    transition: background-color 0.2s;
}

.btn-red { background-color: #d40511; color: #fff; }
.btn-red:hover { background-color: #b30410; color: #fff; text-decoration: none; }

.btn-red-sm {
    background-color: #d40511;
    color: #fff;
    padding: 10px 20px;
    font-size: 13px;
    font-weight: 700;
}
.btn-red-sm:hover { background-color: #b30410; color: #fff; text-decoration: none; }

/* Info cards (4 col) */
.info-section {
    padding: 30px 0 50px;
}

.cards-grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

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

.info-card {
    background-color: #fff;
    border: 1px solid #e5e5e5;
    border-top: 3px solid #d40511;
    border-radius: 2px;
    padding: 24px;
    transition: box-shadow 0.2s, transform 0.2s;
}

.info-card:hover {
    box-shadow: 0 6px 16px rgba(0,0,0,0.08);
    transform: translateY(-3px);
}

.card-icon {
    color: #d40511;
    font-size: 26px;
    margin-bottom: 12px;
}

.info-card h3 {
    font-size: 16px;
    margin-bottom: 8px;
}

.info-card p {
    color: #555;
    font-size: 14px;
    line-height: 1.55;
}

/* Tracking banner with image */
.tracking-banner {
    padding: 40px 0;
}

.tracking-banner-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background-color: #fff;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

.tracking-banner-image {
    overflow: hidden;
}

.tracking-banner-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tracking-banner-content {
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.tracking-banner-content h2 {
    font-size: 28px;
    margin-bottom: 12px;
}

.tracking-banner-content p {
    color: #555;
    margin-bottom: 22px;
}

.tracking-form {
    display: flex;
    gap: 10px;
    margin-bottom: 16px;
}

.tracking-form input {
    flex: 1;
    padding: 14px 18px;
    border: 1px solid #ccc;
    border-radius: 2px;
    font-size: 15px;
    outline: none;
}

.tracking-form input:focus { border-color: #d40511; }

.result-card {
    background: #fff;
    border-left: 4px solid #d40511;
    padding: 18px 22px;
    border-radius: 2px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.result-tag {
    display: inline-block;
    background-color: #d40511;
    color: #fff;
    padding: 4px 10px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-bottom: 10px;
}

.result-card h4 { font-size: 17px; margin-bottom: 10px; }
.result-card p { font-size: 14px; color: #444; margin-bottom: 5px; }

/* Section title common */
.section-title {
    font-size: 32px;
    margin-bottom: 14px;
}

.section-intro {
    color: #555;
    font-size: 15px;
    margin-bottom: 28px;
    max-width: 900px;
}

/* Business section */
.business-section {
    padding: 50px 0;
    background-color: #fff;
}

.biz-card {
    background-color: #fff;
    border: 1px solid #e5e5e5;
    padding: 26px;
    border-radius: 2px;
    transition: box-shadow 0.2s;
}

.biz-card:hover { box-shadow: 0 4px 14px rgba(0,0,0,0.08); }

.biz-icon {
    display: inline-block;
    color: #d40511;
    font-size: 26px;
    margin-bottom: 12px;
}

.biz-card h3 { font-size: 17px; margin-bottom: 8px; }
.biz-card p { color: #555; font-size: 14px; line-height: 1.55; }

/* Callback section */
.callback-section {
    background-color: #f5f5f5;
    padding: 50px 0;
}

.callback-intro {
    text-align: center;
    color: #333;
    font-size: 15px;
    margin-bottom: 24px;
}

.callback-card {
    background-color: #fff;
    max-width: 360px;
    margin: 0 auto;
    border: 1px solid #e5e5e5;
    border-radius: 2px;
    padding: 28px;
    text-align: center;
}

.callback-icon {
    color: #d40511;
    font-size: 28px;
    margin-bottom: 10px;
}

.callback-card h3 { font-size: 18px; margin-bottom: 8px; }
.callback-card p { color: #555; font-size: 14px; margin-bottom: 18px; }

/* Special services */
.special-section {
    padding: 60px 0;
    background-color: #fff;
}

.special-grid {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 0;
    background: #fff;
    border-radius: 2px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.special-tabs {
    background-color: #ffcc00;
    padding: 0;
}

.tab {
    padding: 18px 22px;
    border-bottom: 1px solid rgba(0,0,0,0.08);
    color: #1a1a1a;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
}

.tab:last-child { border-bottom: none; }

.tab.active {
    background-color: #fff;
    color: #d40511;
}

.tab h4 {
    font-size: 14px;
    margin: 0;
    color: inherit;
}

.tab-arrow {
    color: #d40511;
    font-size: 12px;
    font-weight: 700;
}

.special-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.special-text {
    padding: 32px;
}

.special-text h3 { font-size: 22px; margin-bottom: 12px; }
.special-text p { color: #555; margin-bottom: 14px; font-size: 14px; }
.special-text ul { padding-left: 18px; color: #555; font-size: 14px; }
.special-text ul li { margin-bottom: 8px; }

.special-image { overflow: hidden; }
.special-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Advisor section */
.advisor-section {
    padding: 60px 0;
    background-color: #fafafa;
}

.advisor-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: #fff;
    border-radius: 2px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.advisor-tabs {
    padding: 0;
    background-color: #fff;
}

.advisor-yellow {
    background-color: #ffcc00;
    padding: 16px 22px;
    font-weight: 700;
    color: #1a1a1a;
    font-size: 14px;
}

.advisor-tabs .tab {
    background-color: #fff;
    color: #1a1a1a;
}

.advisor-tabs .tab.active {
    background-color: #f5f5f5;
    color: #d40511;
}

.advisor-image { overflow: hidden; }
.advisor-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Discover section */
.discover-section {
    padding: 60px 0;
    background-color: #fff;
}

.discover-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.discover-card {
    background: #fff;
    border-radius: 2px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
}

.discover-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 16px rgba(0,0,0,0.12);
}

.discover-card img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.discover-label {
    padding: 14px 16px;
    font-weight: 600;
    font-size: 14px;
    color: #1a1a1a;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.ext-icon {
    color: #d40511;
    font-size: 14px;
}

/* Help banner */
.help-banner {
    padding: 50px 0;
    background-color: #f5f5f5;
}

.help-banner-inner {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 30px;
    background: #fff;
    border-radius: 2px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.help-banner-content {
    padding: 36px;
}

.help-banner-content h2 {
    font-size: 24px;
    margin-bottom: 22px;
}

.help-action {
    background-color: #fff;
    border: 1px solid #e5e5e5;
    padding: 16px 18px;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 14px;
    cursor: pointer;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.help-action:hover {
    border-color: #d40511;
    box-shadow: 0 2px 8px rgba(212,5,17,0.1);
}

.help-text { flex: 1; }
.help-text h4 { font-size: 15px; margin-bottom: 4px; color: #1a1a1a; }
.help-text p { color: #555; font-size: 13px; }

.help-arrow {
    color: #d40511;
    font-weight: 700;
    font-size: 16px;
}

.help-banner-image {
    overflow: hidden;
}

.help-banner-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 320px;
}

/* Footer */
.footer {
    background-color: #1a1a1a;
    color: #ccc;
    padding-top: 50px;
}

.footer-inner {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    padding-bottom: 40px;
}

.footer-col h4 {
    color: #fff;
    font-size: 15px;
    margin-bottom: 16px;
    font-weight: 700;
}

.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { color: #ccc; font-size: 14px; }
.footer-col ul li a:hover { color: #fff; }

.footer-brand-row {
    border-top: 1px solid #333;
    padding: 26px 0 18px;
}
.footer-logo {
    height: 44px;
    width: auto;
    fill: #fff;
    opacity: 0.95;
    filter: brightness(0) invert(1);
}

.footer-bottom {
    border-top: 1px solid #333;
    padding: 20px 0;
}

.footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    color: #999;
}

.footer-links { display: flex; gap: 20px; }
.footer-links a { color: #999; font-size: 13px; }

.footer-yellow-bar {
    background-color: #ffcc00;
    padding: 14px 0;
}

.footer-yellow-inner {
    display: flex;
    align-items: center;
    gap: 16px;
}

.footer-brand {
    font-weight: 700;
    color: #1a1a1a;
    font-size: 14px;
    letter-spacing: 0.5px;
    margin-right: auto;
}

/* Image fallbacks (CSS-illustrated background if Unsplash image fails) */
.img-fallback-plane {
    background: linear-gradient(135deg, #ffcc00 0%, #ffaa00 100%);
    position: relative;
}
.img-fallback-plane::after {
    content: "✈️";
    position: absolute; top: 50%; left: 50%;
    transform: translate(-50%, -50%); font-size: 110px;
}
.img-fallback-boxes {
    background: linear-gradient(135deg, #fff8d6 0%, #ffcc00 100%);
    position: relative; min-height: 320px;
}
.img-fallback-boxes::after {
    content: "📦"; position: absolute; top: 50%; left: 50%;
    transform: translate(-50%, -50%); font-size: 120px;
}
.img-fallback-truck {
    background: linear-gradient(135deg, #d40511 0%, #ffcc00 100%);
    position: relative; min-height: 280px;
}
.img-fallback-truck::after {
    content: "🚚"; position: absolute; top: 50%; left: 50%;
    transform: translate(-50%, -50%); font-size: 110px;
}
.img-fallback-advisor {
    background: linear-gradient(135deg, #1a1a1a 0%, #555 100%);
    position: relative; min-height: 320px;
}
.img-fallback-advisor::after {
    content: "👥"; position: absolute; top: 50%; left: 50%;
    transform: translate(-50%, -50%); font-size: 110px;
}
.img-fallback-support {
    background: linear-gradient(135deg, #ffcc00 0%, #d40511 100%);
    position: relative; min-height: 320px;
}
.img-fallback-support::after {
    content: "🎧"; position: absolute; top: 50%; left: 50%;
    transform: translate(-50%, -50%); font-size: 110px;
}

/* Discover illustrations (CSS only, always on theme) */
.discover-illustration {
    aspect-ratio: 4 / 3;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 72px;
    color: #fff;
}
.ill-globe { background: linear-gradient(135deg, #ffcc00 0%, #ffaa00 100%); }
.ill-ecom { background: linear-gradient(135deg, #d40511 0%, #ff5050 100%); }
.ill-warehouse { background: linear-gradient(135deg, #1a1a1a 0%, #555 100%); }
.ill-rocket { background: linear-gradient(135deg, #ffcc00 0%, #d40511 100%); }

/* === DEBLOQUER PAGE === */

.active-link {
    color: #d40511 !important;
    font-weight: 700;
    text-decoration: underline;
}

/* Alert banner */
.alert-banner {
    background-color: #fff4e5;
    border-top: 1px solid #ffcc00;
    border-bottom: 1px solid #ffcc00;
    padding: 14px 0;
}
.alert-inner {
    display: flex;
    align-items: center;
    gap: 14px;
    color: #5a3d00;
    font-size: 14px;
}
.alert-icon {
    color: #d40511;
    font-size: 22px;
}

/* Hero unlock */
.unlock-hero {
    padding: 50px 0 30px;
    background-color: #fff;
}
.unlock-hero h1 {
    font-size: 42px;
    line-height: 1.1;
    margin-bottom: 14px;
}
.unlock-hero .hero-subtitle {
    font-size: 17px;
    color: #555;
    max-width: 720px;
}

/* Package details card */
.package-section {
    padding: 30px 0 10px;
    background-color: #fff;
}
.package-card {
    background: #fff;
    border: 1px solid #e5e5e5;
    border-top: 4px solid #d40511;
    border-radius: 4px;
    padding: 28px 32px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
.package-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
    padding-bottom: 22px;
    border-bottom: 1px solid #f0f0f0;
    margin-bottom: 22px;
}
.package-header-left { flex: 1; }
.package-status {
    display: inline-block;
    background-color: #d40511;
    color: #fff;
    padding: 5px 12px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-bottom: 10px;
    border-radius: 2px;
}
.package-card h2 {
    font-size: 22px;
    margin-bottom: 6px;
}
.package-number {
    font-family: 'Courier New', monospace;
    color: #d40511;
    letter-spacing: 1px;
}
.package-sub {
    color: #666;
    font-size: 14px;
}
.package-illustration {
    font-size: 70px;
    line-height: 1;
    background: linear-gradient(135deg, #ffcc00 0%, #ffaa00 100%);
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    flex-shrink: 0;
}

.package-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 24px;
}
.package-info-block {
    display: flex;
    flex-direction: column;
    gap: 2px;
    padding: 14px 16px;
    background: #fafafa;
    border-radius: 4px;
    border-left: 3px solid #ffcc00;
}
.info-label {
    font-size: 11px;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 700;
}
.info-value {
    font-size: 15px;
    color: #1a1a1a;
    font-weight: 700;
}
.info-sub {
    font-size: 12px;
    color: #777;
}

.reason-box {
    background-color: #fff4e5;
    border: 1px solid #ffcc00;
    border-radius: 4px;
    padding: 14px 18px;
    display: flex;
    gap: 12px;
    align-items: flex-start;
    margin-bottom: 28px;
    color: #5a3d00;
    font-size: 14px;
    line-height: 1.5;
}
.reason-icon {
    color: #d40511;
    font-size: 22px;
    flex-shrink: 0;
}
.reason-sub {
    display: block;
    font-size: 12px;
    color: #7a5a00;
    margin-top: 4px;
}

.timeline-title {
    font-size: 17px;
    margin-bottom: 18px;
    color: #1a1a1a;
}

.timeline {
    position: relative;
    padding-left: 6px;
}
.timeline::before {
    content: "";
    position: absolute;
    left: 14px;
    top: 6px;
    bottom: 6px;
    width: 2px;
    background: #e5e5e5;
}
.tl-step {
    display: flex;
    gap: 16px;
    padding: 8px 0;
    position: relative;
}
.tl-dot {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #fff;
    border: 2px solid #e5e5e5;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ccc;
    font-size: 13px;
    font-weight: 700;
    flex-shrink: 0;
    z-index: 1;
}
.tl-step.done .tl-dot {
    background: #4caf50;
    border-color: #4caf50;
    color: #fff;
}
.tl-step.current .tl-dot {
    background: #d40511;
    border-color: #d40511;
    color: #fff;
    animation: pulse 1.6s infinite;
}
.tl-step.pending .tl-dot {
    background: #fff;
    border: 2px dashed #ccc;
}
@keyframes pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(212, 5, 17, 0.5); }
    50% { box-shadow: 0 0 0 8px rgba(212, 5, 17, 0); }
}
.tl-content { flex: 1; padding-top: 4px; }
.tl-title { font-weight: 700; font-size: 14px; color: #1a1a1a; }
.tl-step.pending .tl-title { color: #888; font-weight: 500; }
.tl-step.current .tl-title { color: #d40511; }
.tl-desc { font-size: 12px; color: #666; margin-top: 2px; }

@media (max-width: 768px) {
    .package-card { padding: 20px; }
    .package-header { flex-direction: column-reverse; }
    .package-illustration { width: 70px; height: 70px; font-size: 48px; }
    .package-grid { grid-template-columns: 1fr; }
}

/* Unlock section */
.unlock-section {
    padding: 30px 0 60px;
    background-color: #fafafa;
}
.unlock-grid {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 30px;
    align-items: start;
}

/* Stepper */
.stepper {
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 4px;
    padding: 20px;
    position: sticky;
    top: 20px;
}
.step {
    display: flex;
    gap: 14px;
    padding: 14px 0;
    border-bottom: 1px solid #f0f0f0;
    opacity: 0.55;
}
.step:last-child { border-bottom: none; }
.step.active { opacity: 1; }
.step.done { opacity: 1; }
.step.done .step-number {
    background-color: #4caf50;
    color: #fff;
}
.step-number {
    width: 32px;
    height: 32px;
    background-color: #f0f0f0;
    color: #888;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}
.step.active .step-number {
    background-color: #d40511;
    color: #fff;
}
.step-info { flex: 1; }
.step-title { font-weight: 700; font-size: 14px; color: #1a1a1a; }
.step-desc { font-size: 12px; color: #777; }

/* Form panel */
.form-panel {
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 4px;
    padding: 36px;
    min-height: 480px;
}
.step-content { display: none; }
.step-content.active { display: block; }
.step-content h2 {
    font-size: 24px;
    margin-bottom: 8px;
}
.form-intro {
    color: #555;
    font-size: 14px;
    margin-bottom: 24px;
}

/* Form */
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.form-group {
    margin-bottom: 18px;
}
.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 700;
    color: #333;
    margin-bottom: 6px;
}
.form-group input,
.form-group select {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid #ccc;
    border-radius: 2px;
    font-size: 15px;
    outline: none;
    transition: border-color 0.2s;
    font-family: inherit;
}
.form-group input:focus,
.form-group select:focus {
    border-color: #d40511;
}
.form-hint {
    color: #888;
    font-size: 12px;
    margin-top: 4px;
    display: block;
}
.phone-input {
    display: flex;
    gap: 8px;
}
.country-code {
    flex: 0 0 110px;
    background: #fafafa;
}
.phone-input input { flex: 1; }

.form-checkbox {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    margin: 18px 0 24px;
    font-size: 13px;
    color: #555;
}
.form-checkbox input {
    margin-top: 3px;
    cursor: pointer;
}
.form-checkbox a { color: #d40511; }

.btn-block {
    width: 100%;
}

.btn-outline {
    background: #fff;
    color: #333;
    border: 1px solid #ccc;
    padding: 13px 28px;
}
.btn-outline:hover {
    background: #f5f5f5;
}

.form-buttons {
    display: flex;
    gap: 12px;
    justify-content: space-between;
    margin-top: 24px;
}

/* OTP */
.otp-inputs {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin: 20px 0;
}
.otp-digit {
    width: 56px;
    height: 64px;
    text-align: center;
    font-size: 24px;
    font-weight: 700;
    border: 2px solid #ccc;
    border-radius: 4px;
    outline: none;
    transition: border-color 0.2s, transform 0.15s;
    background: #fafafa;
    color: #1a1a1a;
}
.otp-digit:focus {
    border-color: #d40511;
    background: #fff;
    transform: scale(1.04);
}
.otp-actions {
    text-align: center;
    margin: 16px 0 4px;
    font-size: 13px;
    color: #666;
}
.otp-actions a { color: #d40511; font-weight: 600; }
.error-message {
    color: #d40511;
    font-size: 13px;
    margin-top: 12px;
    text-align: center;
    font-weight: 600;
}

/* Success */
.success-box {
    text-align: center;
    padding: 20px 0;
}
.success-icon {
    width: 70px;
    height: 70px;
    background: #4caf50;
    color: #fff;
    border-radius: 50%;
    font-size: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}
.success-box h2 {
    color: #1a1a1a;
    font-size: 26px;
    margin-bottom: 10px;
}
.success-box > p {
    color: #555;
    margin-bottom: 24px;
}
.success-details {
    background: #fafafa;
    border: 1px solid #e5e5e5;
    border-radius: 4px;
    padding: 18px 22px;
    margin: 0 auto 24px;
    max-width: 480px;
    text-align: left;
}
.detail-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid #eee;
    font-size: 14px;
}
.detail-row:last-child { border-bottom: none; }
.detail-label { color: #666; }
.detail-value { color: #1a1a1a; font-weight: 600; }

/* Reassurance */
.reassurance-section {
    padding: 50px 0;
    background-color: #fff;
}
.reassurance-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.reassurance-card {
    text-align: center;
    padding: 26px 22px;
    border: 1px solid #e5e5e5;
    border-radius: 4px;
    background: #fff;
}
.rea-icon {
    font-size: 32px;
    color: #d40511;
    display: block;
    margin-bottom: 10px;
}
.reassurance-card h3 {
    font-size: 17px;
    margin-bottom: 8px;
}
.reassurance-card p {
    color: #555;
    font-size: 13px;
}

/* Responsive */
@media (max-width: 960px) {
    .cards-grid-4 { grid-template-columns: repeat(2, 1fr); }
    .discover-grid { grid-template-columns: repeat(2, 1fr); }
    .special-grid { grid-template-columns: 1fr; }
    .special-content { grid-template-columns: 1fr; }
    .advisor-grid { grid-template-columns: 1fr; }
}

@media (max-width: 960px) {
    .unlock-grid { grid-template-columns: 1fr; gap: 20px; }
    .stepper { position: static; display: flex; gap: 8px; padding: 12px; flex-wrap: wrap; }
    .stepper .step { flex: 1 1 30%; min-width: 0; border-bottom: none; padding: 8px; gap: 8px; }
    .stepper .step-info { min-width: 0; }
    .stepper .step-title { font-size: 13px; }
    .stepper .step-desc { font-size: 11px; }
    .reassurance-grid { grid-template-columns: 1fr; }
    .form-panel { padding: 26px; }
}

@media (max-width: 768px) {
    .main-nav, .sub-nav, .footer-yellow-bar { display: none; }
    .container { padding: 0 16px; }
    .hero-text h1 { font-size: 32px; }
    .unlock-hero { padding: 30px 0 20px; }
    .unlock-hero h1 { font-size: 26px; }
    .form-panel { padding: 20px; min-height: auto; }
    .form-row { grid-template-columns: 1fr; gap: 0; }
    .form-group { margin-bottom: 14px; }
    .form-group input, .form-group select { padding: 11px 12px; font-size: 14px; }
    .step-content h2 { font-size: 20px; }
    .form-intro { font-size: 13px; margin-bottom: 18px; }
    .phone-input { gap: 6px; }
    .country-code { flex: 0 0 92px; font-size: 13px; padding: 11px 6px; }
    .otp-inputs { gap: 6px; }
    .otp-digit {
        width: 100%;
        max-width: 48px;
        height: 52px;
        font-size: 20px;
        flex: 1 1 0;
    }
    .form-buttons { flex-direction: column-reverse; gap: 8px; }
    .form-buttons .btn { width: 100%; }
    .btn { padding: 12px 18px; font-size: 14px; }
    .footer-logo { height: 36px; }
    .footer-brand-row { padding: 20px 0 14px; }
    .package-card { padding: 18px; }
    .package-header { gap: 14px; }
    .package-card h2 { font-size: 18px; }
    .package-illustration { width: 64px; height: 64px; font-size: 42px; }
    .reason-box { padding: 12px 14px; font-size: 13px; }
    .timeline-title { font-size: 15px; }
    .tl-step { gap: 10px; }
    .tl-dot { width: 26px; height: 26px; font-size: 11px; }
    .timeline::before { left: 12px; }
    .alert-banner { font-size: 13px; padding: 10px 0; }
    .alert-inner { gap: 10px; }
    .form-checkbox { font-size: 12px; }
    .stepper { gap: 6px; padding: 10px; }
    .stepper .step { flex: 1 1 100%; padding: 6px 8px; }
    .stepper.compact .step-info { display: block; }
    .hero-grid { grid-template-columns: 1fr; }
    .nav-links { gap: 14px; flex-wrap: wrap; font-size: 13px; }
    .top-bar-right { gap: 10px; flex-wrap: wrap; }
    .top-bar-right .top-link { font-size: 12px; }
    .lang-switch { padding: 3px 8px; }
    .lang-switch .lang { font-size: 12px; }
    .sub-nav-inner { flex-wrap: wrap; gap: 12px; }
    .sub-nav-inner a { font-size: 13px; }
    .cards-grid-2 { grid-template-columns: 1fr; }
    .tracking-banner-inner { grid-template-columns: 1fr; }
    .tracking-form { flex-direction: column; }
    .help-banner-inner { grid-template-columns: 1fr; }
    .footer-inner { grid-template-columns: repeat(2, 1fr); }
    .footer-bottom-inner { flex-direction: column; gap: 10px; }
    .footer-yellow-inner { flex-wrap: wrap; }
    .section-title { font-size: 24px; }
}

@media (max-width: 480px) {
    .unlock-hero h1 { font-size: 22px; }
    .step-content h2 { font-size: 18px; }
    .form-panel { padding: 16px; }
    .otp-digit { height: 46px; font-size: 18px; max-width: 42px; }
    .package-card { padding: 14px; }
    .package-illustration { width: 52px; height: 52px; font-size: 32px; }
    .package-card h2 { font-size: 16px; }
    .package-status { font-size: 11px; padding: 4px 10px; }
    .info-value { font-size: 14px; }
    .info-label { font-size: 10px; }
    .reason-box { padding: 10px 12px; font-size: 12px; gap: 10px; }
    .tl-title { font-size: 13px; }
    .tl-desc { font-size: 11px; }
    .stepper .step-number { width: 26px; height: 26px; font-size: 12px; }
    .footer-logo { height: 30px; }
    .footer-bottom-inner { font-size: 12px; }
}
