@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&display=swap');

:root {
    --bg-primary: #0A0A0C;
    --bg-secondary: #121216;
    --bg-tertiary: #1A1A22;
    --text-primary: #F3F4F6;
    --text-secondary: #9CA3AF;
    --accent-gold: #C5A880;
    --accent-gold-hover: #D8B78F;
    --accent-gold-glow: rgba(197, 168, 128, 0.15);
    --border-color: rgba(255, 255, 255, 0.08);
    --border-gold: rgba(197, 168, 128, 0.3);
    --glass-bg: rgba(18, 18, 22, 0.75);
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', system-ui, -apple-system, sans-serif;
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --max-width: 1200px;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    background-color: var(--bg-primary);
    color: var(--text-primary);
    font-family: var(--font-body);
    -webkit-font-smoothing: antialiased;
}

body {
    overflow-x: hidden;
    line-height: 1.6;
}

/* Typography */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.25;
    letter-spacing: -0.01em;
}

p {
    color: var(--text-secondary);
    font-size: 1.05rem;
    font-weight: 300;
}

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

/* Scrollbar styling */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg-primary);
}
::-webkit-scrollbar-thumb {
    background: var(--bg-tertiary);
    border-radius: 4px;
    border: 2px solid var(--bg-primary);
}
::-webkit-scrollbar-thumb:hover {
    background: var(--accent-gold);
}

/* Reusable Components */
.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

.section-padding {
    padding: 8rem 0;
}

.gold-text {
    color: var(--accent-gold);
    background: linear-gradient(135deg, #E5C49A 0%, #A3845A 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2.25rem;
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition-smooth);
    border: none;
    outline: none;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, #C5A880 0%, #A3845A 100%);
    color: #0A0A0C;
    box-shadow: 0 4px 20px var(--accent-gold-glow);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(197, 168, 128, 0.3);
    background: linear-gradient(135deg, #D8B78F 0%, #B4946A 100%);
}

.btn-secondary {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid var(--border-gold);
}

.btn-secondary:hover {
    background: rgba(197, 168, 128, 0.05);
    border-color: var(--accent-gold);
    color: var(--accent-gold);
}

.badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(197, 168, 128, 0.08);
    border: 1px solid var(--border-gold);
    color: var(--accent-gold);
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 5rem auto;
}

.section-header h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.section-header p {
    font-size: 1.15rem;
}

/* Header & Navigation */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-color);
    transition: var(--transition-smooth);
}

header.scrolled {
    padding: 0.75rem 0;
    background: rgba(10, 10, 12, 0.95);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-icon {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--text-primary);
}

.logo-text {
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 400;
    letter-spacing: 4px;
    color: var(--accent-gold);
    text-transform: uppercase;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 3rem;
}

nav a {
    font-size: 0.9rem;
    font-weight: 400;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--text-secondary);
}

nav a:hover, nav a.active {
    color: var(--accent-gold);
}

.header-cta {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.phone-link {
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--text-primary);
    transition: var(--transition-smooth);
}

.phone-link:hover {
    color: var(--accent-gold);
}

/* Mobile Nav Toggle */
.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.nav-toggle span {
    display: block;
    width: 25px;
    height: 2px;
    background: var(--text-primary);
    margin: 5px 0;
    transition: var(--transition-smooth);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 100px;
    background-color: var(--bg-primary);
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px),
        radial-gradient(circle at 75% 35%, rgba(197, 168, 128, 0.1) 0%, rgba(10, 10, 12, 0) 65%);
    background-size: 50px 50px, 50px 50px, auto;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
    align-items: center;
}

.hero-content h1 {
    font-size: 4.25rem;
    line-height: 1.1;
    margin-bottom: 2rem;
}

.hero-content p {
    font-size: 1.25rem;
    margin-bottom: 3rem;
    max-width: 600px;
}

.hero-ctas {
    display: flex;
    gap: 1.5rem;
}

.hero-image-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image-glow {
    position: absolute;
    width: 80%;
    height: 80%;
    background: radial-gradient(circle, rgba(197, 168, 128, 0.15) 0%, rgba(10, 10, 12, 0) 70%);
    z-index: 1;
    animation: pulse 8s infinite alternate;
}

.hero-image {
    max-width: 100%;
    height: auto;
    object-fit: contain;
    z-index: 2;
    filter: drop-shadow(0 20px 50px rgba(0,0,0,0.7));
    animation: float 6s ease-in-out infinite;
}

/* Core Values / Features */
.features {
    background-color: var(--bg-secondary);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.feature-card {
    background: var(--bg-tertiary);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 3.5rem 2.5rem;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-gold) 0%, transparent 100%);
    opacity: 0;
    transition: var(--transition-smooth);
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: var(--border-gold);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-icon {
    font-size: 2.5rem;
    color: var(--accent-gold);
    margin-bottom: 2rem;
    display: inline-block;
}

.feature-card h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
}

.feature-card p {
    font-size: 1rem;
}

/* Concept & Customization Section */
.concept-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.concept-image-wrapper {
    position: relative;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.concept-image {
    width: 100%;
    height: auto;
    display: block;
    transition: var(--transition-smooth);
}

.concept-image-wrapper:hover .concept-image {
    transform: scale(1.03);
}

.concept-badge {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    background: rgba(10, 10, 12, 0.85);
    border: 1px solid var(--border-gold);
    padding: 0.75rem 1.5rem;
    backdrop-filter: blur(10px);
    border-radius: 4px;
}

.concept-badge h4 {
    font-size: 1rem;
    font-weight: 600;
}

.concept-content h2 {
    font-size: 2.8rem;
    margin-bottom: 2rem;
}

.concept-content p {
    margin-bottom: 2rem;
}

.specs-list {
    list-style: none;
}

.specs-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.specs-list li i {
    color: var(--accent-gold);
    font-size: 1.2rem;
    margin-top: 0.2rem;
}

.specs-list h4 {
    font-size: 1.15rem;
    font-family: var(--font-body);
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.specs-list p {
    font-size: 0.95rem;
}

/* Configurator / Interactive Watch Customizer */
.configurator {
    background-color: var(--bg-secondary);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.configurator-wrapper {
    background: var(--bg-tertiary);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

.configurator-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
}

.configurator-preview {
    background-color: #0E0E12;
    padding: 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    border-right: 1px solid var(--border-color);
}

.canvas-container {
    position: relative;
    width: 100%;
    max-width: 420px;
    aspect-ratio: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

#customizerCanvas {
    width: 100%;
    height: 100%;
    max-width: 420px;
    max-height: 420px;
    border-radius: 50%;
    box-shadow: 0 15px 40px rgba(0,0,0,0.6);
}

.configurator-controls {
    padding: 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.configurator-controls h3 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

.configurator-controls p.subtitle {
    margin-bottom: 2.5rem;
}

.control-group {
    margin-bottom: 2rem;
}

.control-label {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--accent-gold);
    margin-bottom: 1rem;
}

/* Selection Badges & Inputs */
.color-picker {
    display: flex;
    gap: 1rem;
}

.color-option {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition-smooth);
    position: relative;
}

.color-option.active {
    border-color: var(--accent-gold);
    transform: scale(1.15);
}

.color-option[data-color="midnight"] { background: radial-gradient(circle, #1e293b, #0f172a); }
.color-option[data-color="emerald"] { background: radial-gradient(circle, #064e3b, #022c22); }
.color-option[data-color="charcoal"] { background: radial-gradient(circle, #2d3142, #181920); }
.color-option[data-color="champagne"] { background: radial-gradient(circle, #d4af37, #8c7323); }

.strap-picker {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.strap-option {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    padding: 0.75rem 1rem;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.9rem;
    text-align: center;
    font-weight: 500;
    transition: var(--transition-smooth);
}

.strap-option.active {
    border-color: var(--accent-gold);
    background: rgba(197, 168, 128, 0.05);
    color: var(--accent-gold);
}

/* Upload styles */
.file-upload-wrapper {
    position: relative;
}

.file-upload-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    width: 100%;
    padding: 1rem;
    background: var(--bg-secondary);
    border: 1px dashed var(--border-gold);
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition-smooth);
    font-size: 0.95rem;
    color: var(--text-primary);
}

.file-upload-btn:hover {
    background: rgba(197, 168, 128, 0.03);
    border-color: var(--accent-gold);
}

.file-upload-btn i {
    font-size: 1.2rem;
    color: var(--accent-gold);
}

#logoUpload {
    display: none;
}

.range-control {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

input[type="range"] {
    flex-grow: 1;
    -webkit-appearance: none;
    appearance: none;
    height: 4px;
    border-radius: 2px;
    background: var(--bg-secondary);
    outline: none;
}

input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--accent-gold);
    cursor: pointer;
    transition: var(--transition-smooth);
}

input[type="range"]::-webkit-slider-thumb:hover {
    transform: scale(1.2);
}

.configurator-actions {
    margin-top: 3rem;
}

.configurator-actions button {
    width: 100%;
}

/* Capabilities & Production Section */
.capabilities-intro {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 6rem;
    margin-bottom: 6rem;
    align-items: flex-end;
}

.capabilities-intro h2 {
    font-size: 3.2rem;
}

.capabilities-intro p {
    font-size: 1.15rem;
}

.capabilities-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.capabilities-list {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.capability-item {
    display: flex;
    gap: 1.5rem;
}

.capability-num {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--accent-gold);
    line-height: 1;
}

.capability-info h3 {
    font-size: 1.4rem;
    margin-bottom: 0.75rem;
}

.capability-info p {
    font-size: 0.95rem;
}

.capabilities-image-wrapper {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.capabilities-image {
    width: 100%;
    height: auto;
    display: block;
    transition: var(--transition-smooth);
}

.capabilities-image-wrapper:hover .capabilities-image {
    transform: scale(1.02);
}

/* Corporate Gifts & Packaging Section */
.packaging {
    background-color: var(--bg-secondary);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.packaging-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 5rem;
    align-items: center;
}

.packaging-content h2 {
    font-size: 2.8rem;
    margin-bottom: 2rem;
}

.packaging-content p {
    margin-bottom: 2.5rem;
}

.packaging-image-wrapper {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.packaging-image {
    width: 100%;
    height: auto;
    display: block;
    transition: var(--transition-smooth);
}

.packaging-image-wrapper:hover .packaging-image {
    transform: scale(1.02);
}

/* Contact / Order Section */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 5rem;
}

.contact-info-panel {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 4rem 3rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.contact-info-panel h3 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
}

.contact-info-panel p.intro {
    margin-bottom: 3rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 4rem;
}

.detail-item {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
}

.detail-icon {
    font-size: 1.3rem;
    color: var(--accent-gold);
    background: rgba(197, 168, 128, 0.08);
    width: 46px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid var(--border-gold);
}

.detail-text h4 {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--accent-gold);
    margin-bottom: 0.4rem;
    font-family: var(--font-body);
    font-weight: 600;
}

.detail-text p, .detail-text a {
    font-size: 1.05rem;
    font-weight: 400;
    color: var(--text-primary);
}

.detail-text a:hover {
    color: var(--accent-gold);
}

/* Stylized Map Mockup */
.map-mockup {
    height: 180px;
    border-radius: 6px;
    overflow: hidden;
    position: relative;
    border: 1px solid var(--border-color);
}

.map-placeholder {
    width: 100%;
    height: 100%;
    background-color: var(--bg-tertiary);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: var(--text-secondary);
    text-align: center;
    padding: 1.5rem;
}

.map-placeholder i {
    font-size: 2rem;
    color: var(--accent-gold);
    margin-bottom: 0.75rem;
}

.map-placeholder span {
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--text-primary);
}

/* Form Styling */
.contact-form-panel {
    background: var(--bg-tertiary);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 4rem;
}

.contact-form-panel h3 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

.contact-form-panel p {
    margin-bottom: 3rem;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.form-group.full-width {
    grid-column: span 2;
}

.form-group label {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--accent-gold);
}

.form-control {
    background-color: var(--bg-secondary);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    padding: 1rem 1.25rem;
    border-radius: 4px;
    font-size: 1rem;
    font-family: var(--font-body);
    transition: var(--transition-smooth);
    width: 100%;
}

.form-control:focus {
    outline: none;
    border-color: var(--accent-gold);
    box-shadow: 0 0 10px rgba(197, 168, 128, 0.1);
}

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

.form-submit-btn {
    width: 100%;
    margin-top: 1rem;
}

.form-status {
    margin-top: 1.5rem;
    padding: 1rem;
    border-radius: 4px;
    font-size: 0.95rem;
    text-align: center;
    display: none;
}

.form-status.success {
    display: block;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.2);
    color: #10B981;
}

.form-status.error {
    display: block;
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.2);
    color: #EF4444;
}

/* Footer Section */
footer {
    background-color: var(--bg-primary);
    border-top: 1px solid var(--border-color);
    padding: 4rem 0;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.footer-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-logo span {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
}

.footer-copyright {
    font-weight: 300;
}

.social-links {
    display: flex;
    gap: 1.5rem;
}

.social-links a {
    color: var(--text-secondary);
    font-size: 2.4rem;
    transition: var(--transition-smooth);
}

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

/* Keyframes and Animations */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}

@keyframes pulse {
    0% { opacity: 0.6; transform: scale(0.95); }
    100% { opacity: 1; transform: scale(1.05); }
}

/* Responsive styles */
@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
        text-align: center;
    }
    
    .hero-content {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .hero-ctas {
        justify-content: center;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .concept-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
    
    .configurator-grid {
        grid-template-columns: 1fr;
    }
    
    .configurator-preview {
        border-right: none;
        border-bottom: 1px solid var(--border-color);
        padding: 3rem 2rem;
    }
    
    .configurator-controls {
        padding: 3rem 2rem;
    }
    
    .capabilities-intro {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .capabilities-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
    
    .packaging-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    header {
        padding: 0.5rem 0;
    }
    
    .nav-toggle {
        display: block;
        z-index: 101;
    }
    
    nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: var(--bg-primary);
        display: flex;
        align-items: center;
        justify-content: center;
        transition: var(--transition-smooth);
        z-index: 100;
    }
    
    nav.open {
        right: 0;
    }
    
    nav ul {
        flex-direction: column;
        align-items: center;
        gap: 2.5rem;
    }
    
    nav a {
        font-size: 1.25rem;
    }
    
    .header-cta {
        display: none; /* Hidden on mobile header, can show in menu */
    }
    
    .section-padding {
        padding: 5rem 0;
    }
    
    .section-header h2 {
        font-size: 2.25rem;
    }
    
    .hero-content h1 {
        font-size: 2.8rem;
    }
    
    .form-grid {
        grid-template-columns: 1fr;
    }
    
    .form-group.full-width {
        grid-column: span 1;
    }
    
    .footer-wrapper {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }

    .container {
        padding: 0 1.25rem;
    }

    .configurator-preview {
        padding: 2rem 1rem;
    }

    .configurator-controls {
        padding: 2.5rem 1.25rem;
    }

    .strap-picker {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }

    .contact-form-panel {
        padding: 2.5rem 1.25rem;
    }

    .contact-info-panel {
        padding: 2.5rem 1.25rem;
    }
}
